默认情况下我们使用"下载CSV"按钮下载报告,我们只获得创建图表时使用的相同常用数据。但是,如果我想下载更多数据,那么如何实现呢?
答案 0 :(得分:0)
我们可以通过将新项添加到菜单中来实现相同目的:
Highcharts.getOptions().exporting.buttons.contextButton.menuItems.push({
text: 'Download custom CSV',
onclick: function () {
/* Add your custom logic to download CSV file with desired data*/
}
});