0
我有一種情況,我使用相同的線性測量儀測量負向和正向速度。我想知道是否有可能將指針從中心開始作爲零點?這裏是我的代碼:是否可以讓線性儀表指針從中心開始?
<script>
function createSpeedGauge() {
$("#speedBar").kendoLinearGauge({
pointer: {
value: 0,
color: "black",
start: 0
},
scale: {
majorUnit: 20,
minorUnit: 2,
min: -120,
max: 120,
vertical: true,
reverse: true,
ranges: [
{
from: -120,
to: -30,
color: "#ffc700"
},
{
from: 120,
to: 30,
color: "#ffc700"
}
]
}
});
}
$(document).ready(function() {
createSpeedGauge();
});
</script>
我已經附上它是如何的設定(有問題的儀表右側)的圖像。如果這是按照我想要的方式設置的,那麼這個測量儀會從這張圖片讀取-120。 (現在,它在黑色條上顯示「0」,因爲這是我在js中設置的值。)有什麼建議嗎?