【发布时间】:2019-10-22 03:13:31
【问题描述】:
我正在搜索在 Highcharts 中使用 exportData 事件的示例
https://api.highcharts.com/highcharts/chart.events.exportData
我没有找到任何示例,有人可以帮助我吗?
【问题讨论】:
标签: highcharts
我正在搜索在 Highcharts 中使用 exportData 事件的示例
https://api.highcharts.com/highcharts/chart.events.exportData
我没有找到任何示例,有人可以帮助我吗?
【问题讨论】:
标签: highcharts
您需要添加exporting 和export-data 模块并在上下文菜单中单击例如“查看数据表”:
chart: {
events: {
exportData: function() {
alert('export data!');
}
}
}
现场演示: http://jsfiddle.net/BlackLabel/50vx6ad8/
文档: https://www.highcharts.com/docs/export-module/export-module-overview
【讨论】: