无法设置未定义的属性"值"



我在代码中使用了zingchart仪表。我的问题是我无法动态更改仪表值。

我收到此错误:

无法设置未定义的属性"值"

我正在使用烧瓶 API。如何使用烧瓶 API 更改此变量值?您知道动态压力表可以使用什么吗?

function fetchData() {
  $.ajax({
    url: "api/read",
    method: "GET",
    success: function(data, status, xhr) {
      //var array = data.split(",").map(Number);
      a = JSON.parse(data);
      $('#myChart').series.values = 20;
      //console.log(a);                            
    },
    error: function(xhr, status, error) {
      $("#dataHeader").html("Error: n" + error);
    }
  });
}
var myConfig4 = {
  "type": "gauge",
  "scale-r": {
    "aperture": 200,
    "values": "0:100:10",
    "center": { //Pivot Point
      "size": 6,
      "background-color": "#66CCFF #FFCCFF",
      "border-color": "#000000"
    }
  },
  "plot": {
    "csize": "5%",
    "size": "85%",
    "background-color": "#000000"
  },
  "series": [{
    "values": [] // i need to change this value
  }]
};
zingchart.render({
  id: 'myChart',
  data: myConfig4,
  height: "75%",
  width: "75%"
});
setInterval(fetchData, 1000);

您可以使用setseriesvalues并使用数组作为值。

success: function(data, status, xhr) {
  a = JSON.parse(data);
  zingchart.exec('myChart', 'setseriesvalues', {
    plotindex: 0,
    'values': [20]
  });
  //console.log(a);                            
}

相关内容

  • 没有找到相关文章

最新更新