此图表可以从json文件中读取吗?

时间:2017-05-19 13:55:50

标签: javascript jquery html json anychart

我目前正在使用以下图表来显示数据。该图表目前会读取嵌入json的{​​{1}}数据。

我需要能够从文件javascript而不是嵌入式any.json对象中读取。我一直在寻找某种类型的文档,但一无所获。

感谢任何帮助。

json看起来像这样:

any.json

这是当前的html:

[{x: "January", value: 10000},{x: "February", value: 12000},{x: "March", value: 18000}]
anychart.onDocumentReady(function() {
  chart = anychart.fromJson({
    chart: {
      type: "line",
      series: [{
        seriesType: "spline",
        data: [{
            x: "January",
            value: 10000
          },
          {
            x: "February",
            value: 12000
          },
          {
            x: "March",
            value: 18000
          },
          {
            x: "April",
            value: 11000
          },
          {
            x: "May",
            value: 9000
          }
        ]
      }],
      container: "container"
    }
  }).draw();
});
html,
body,
#container {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}