将 Highchart 实时数据导出到表

发布于 2025-01-09 21:16:20 字数 245 浏览 1 评论 0原文

我创建了一个图表 - 类似于 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

叫嚣ゝ 2025-01-16 21:16:20

您可以使用 viewData 方法在每次图表重绘后更新数据表。

  chart: {
    type: 'bar',
    height: 600,
    events: {
      render: function() {
        this.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.

  chart: {
    type: 'bar',
    height: 600,
    events: {
      render: function() {
        this.viewData();
      }
    }
  }

Live demo: https://jsfiddle.net/BlackLabel/uLk3nfjz/

API Reference: https://api.highcharts.com/class-reference/Highcharts.Chart#viewData

青丝拂面 2025-01-16 21:16:20

简单的答案,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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文