在我的项目中使用Kendo UI Datawiz组件(线性仪表)。它应该是深度的指标,其中表面为0(顶部),底部应为x(底部)。目前我还没有弄清楚如何“反转”测量仪的方向,使其从0开始,然后向下移向x。
有谁知道如何实现这个目标?
这是我的指标:
function createGauges() {
var value = $("#depthBar").val();
$("#depthBar").kendoLinearGauge({
pointer: {
value: 28,
shape: "arrow"
},
scale: {
majorUnit: 20,
minorUnit: 2,
min: -40,
max: 60,
vertical: true,
directions:
}
});
}
$(document).ready(function() {
createGauges();
});
答案 0 :(得分:2)
而且,我找到了答案。实际上错过了文档中的一小段代码;
...
scale: {
majorUnit: 1000,
minorUnit: 500,
min: 0,
max: 12000,
vertical: true,
reverse: true
}
...