gpt4 book ai didi

javascript - Dojo Gauges - 我可以限制可设置值吗?

转载 作者:行者123 更新时间:2023-11-28 02:10:14 25 4
gpt4 key购买 nike

我有一个范围从 0 - 100 的交互式 dojox 仪表。但我只希望我的用户能够将指针移动到 0、25、50、75 和 100。这可能吗?

                // create the gauge
var gauge = new dojox.gauges.GlossyCircularGauge({
background : [255, 255, 255, 0],
color : color,
id : "gauge_" + item,
width : 150,
height : 150,
value : itemProgress,
noChange : Login.isLoggedIn(),
majorTicksInterval : 25
}, dojo.byId("gaugeDiv_" + item));
gauge.startup();

干杯,日本

最佳答案

看看我的 fiddle :http://jsfiddle.net/v7WwD/1/

require(["dojox/dgauges/components/grey/CircularLinearGauge"],

function (CircularLinearGauge) {
var myGauge = new CircularLinearGauge({
value: 20,
minimum: 0,
maximum: 150,
majorTickInterval: 25,
minorTickIntervall: 5,
indicatorColor: "#000080", //Zeiger
fillColor: "#FFFFFF"
}, dojo.byId("gauge"));
myGauge.startup();
});

//more code in the fiddle
//......

我以编程方式创建了一个 CircularLinearGauge。

问候

关于javascript - Dojo Gauges - 我可以限制可设置值吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17219744/

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