Editable mode in Physical device is Not working.
- It is working only first time, from second tome it is not working.
- Also in debug mode working fine .but when debugger is off then not working.
events: {
beforeRender: (evt, args) => {
console.log("evt===", evt);
console.log("evt==args=", args);
this.setState({
});
},
rendered: (evtObj, argObj) => {
console.log("evtObj===", evtObj);
console.log("evt==argObj=", argObj);
this.setState({
});
},
realtimeUpdateComplete: (evtObj, argObj) => {
// alert("realtimeUpdateComplete");
console.log("evtObj11===", evtObj);
console.log("evt==argObj11=", argObj);
var press= `${evtObj.data.updateObject.values[0]}`;
this.dialRangeSelectionValue(press, this.state.PressureValue, this.state.TempCel)
},
disposed: (evtObj, argObj) => {
}
```js
Hi @Biplovkumar ,
Can you mention which chart you are rendering, and with what data?
Also please mention what type of interaction you are talking about ?
i am taking about angular gauge.
in angular gauge Editable mode not working in real device .
Data Source:-
dataSource: { chart: { // "caption": "My first gauge", //"subcaption": "Last week", // editMode: "1", majorTMNumber: "10", //many parts minorTMNumber: "4", majorTMColor: "#333333", majorTMAlpha: "100", majorTMHeight: "15", majorTMThickness: "2", lowerLimit: "-14", upperLimit: "486", showValue: "1", numberSuffix: "", theme: "candy", showToolTip: "15" }, colorRange: { color: [ { minValue: "0.7", maxValue: "100", code: "#19a9f8" }, { minValue: "100", maxValue: "200", code: "#19a9f8" }, { minValue: "200", maxValue: "300", code: "#19a9f8" }, { minValue: "300", maxValue: "500.7", code: "#19a9f8" } ] }, dials: { dial: [ { value: "37", bgColor: "#FF0000", borderThickness: "0", borderAlpha: "0", } ] } },