Highcharts - 加载 json 数据
我正在开发一个新项目,并使用 highchart 进行图表创建。我使用数据库中的一些数据创建了一个 json 文件:
[{"date": "2012-02-23", "number": 2}, {"date": "2012-02-21", "number": 4]
如何将此数据添加到 Highcharts->Chart->Series->Data
?
I am working on a new project and using highchart for chart creation. I created a json file with some data from database:
[{"date": "2012-02-23", "number": 2}, {"date": "2012-02-21", "number": 4]
How do i can add this data to Highcharts->Chart->Series->Data
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找到下面的代码。这将显示 JSON 中存在的数据的柱形图。
Find the code below. This displays the column chart for the data present in the JSON.