gpt4 book ai didi

kendo-ui - 给一个线性仪表自定义标签

转载 作者:行者123 更新时间:2023-12-03 22:51:12 25 4
gpt4 key购买 nike

我有一个这样定义的 Kendo 线性量规......

$("#gauge").kendoLinearGauge({

pointer: {
value: 4.5,
shape: "arrow"
},

scale: {
majorUnit: 1,
minorUnit: 1,
max: 6,
ranges: [
{
from: 0,
to: 1,
color: "#ffc700"
}, {
from: 1,
to: 2,
color: "#ff7a00"
}, {
from: 2,
to: 3,
color: "#c20000"
}, {
from: 3,
to: 4,
color: "#FF0000"
}, {
from: 4,
to: 5,
color: "#00FF00"
}, {
from: 5,
to: 6,
color: "#0000FF"
}
]
}
});

这会产生一个看起来像这样的仪表......

我想要做的是用“未验证”、“已验证”、“打开”等字符串值替换数字标签,这样我最终会得到更类似于此的东西......

我相当有信心我应该能够使用模板来做到这一点,但我什至无法获得最简单的示例(包括来自 Telerik 网站的下面显示的示例)。
$("#linear-gauge").kendoLinearGauge({
scale: {
labels: {
// labels template
template: "#= value #%"
}
}
});

任何人都可以提供任何建议吗?

最佳答案

创建模板函数

template: function (rec) {
var label;
switch (rec.value) {
case 0:
label = 'un verified';
break;
case 1:
label = 'verified';
break;
default:
label = 'open';
}
return label;
}

http://dojo.telerik.com/@harsh/EgeVa

关于kendo-ui - 给一个线性仪表自定义标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28903919/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com