如果输入字段的值大于指针的数量,我如何设置 Kendo UI Radial Gauge 动态最大指针数:
<input id="gauge-value" value="180">
$(".gauge").kendoRadialGauge({
pointer: {
value: $("#gauge-value").val(),
color: "#000"
},
scale: {
minorUnit: 5,
startAngle: -30,
endAngle: 210,
max: 100
}
});