react-native-fusioncharts icon indicating copy to clipboard operation
react-native-fusioncharts copied to clipboard

Editable mode in Physical device is Not working.

Open Biplovkumar opened this issue 6 years ago • 2 comments

  1. It is working only first time, from second tome it is not working.
  2. 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

Biplovkumar avatar Apr 03 '19 15:04 Biplovkumar

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 ?

ashok1994 avatar Apr 04 '19 09:04 ashok1994

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", } ] } },

Biplovkumar avatar Apr 08 '19 06:04 Biplovkumar