将 Highchart 实时数据导出到表
我创建了一个图表 - 类似于 Highcharts - 实时数据示例。该图表工作正常。我想在图表下建立一个具有相同数据的表格。我尝试添加以下内容:
导出:{ 显示表:true 表
已构建,但表中没有输入数据。我尝试过在网上查找但找不到任何解决方案。
I have created a chart - similar to Highcharts - Live Data Example. The chart is working fine. I want to build a table with the same data under the chart. I tried to add the following:
exporting: {
showTable: true
}
The table gets built but there is no data that gets inputted in the table. I have tried looking online but can't find any solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
viewData
方法在每次图表重绘后更新数据表。现场演示: https://jsfiddle.net/BlackLabel/uLk3nfjz/
API 参考: https://api.highcharts.com/class-reference/Highcharts.Chart#viewData
You can use
viewData
method to update data-table after each chart redraw.Live demo: https://jsfiddle.net/BlackLabel/uLk3nfjz/
API Reference: https://api.highcharts.com/class-reference/Highcharts.Chart#viewData
简单的答案,highcharts 上的导出选项卡(汉堡包图标)有一个“查看数据表”选项,如果您单击该选项,它将在您单击“查看数据表”时使用新值更新表
查看数据表
Simple answer, the export tab (hamburger icon) on the highcharts has an option to "view data table", if you click that, it will update the table with new values at the time you click "view data table"
View Data Table