What is the name of the attribute in Dgauges to add a precision, it was textIndicatorPrecision in dojox.gauges, like noChange it's replaced by interactionArea.
I added an indicator to my circular gauge using dojox.dgauges but I want to add a precision.
Code :
var indicatorText = new dojox.dgauges.TextIndicator();
indicatorText.set("indicator",indicator);
indicatorText.set("x", 130);
indicatorText.set("y", 154);
gauge.addElement("indicatorText", indicatorText);
Thank you.