Highcharts,如何在导出 PDF 时显示数据表,而在正常情况下使用钻取图表时不显示 pdf
Highcharts,如何在导出 PDF 时显示数据表,而在正常使用钻取图表时不显示 pdf。 我想用 Drilldown-Chart 导出 PDF 或 PNG 文件,但它不起作用,因为我设置
xAxis: {
type: 'category'
},
我不知道。 xAxis应该如何设置? 在我可以设置 xAxis 之前,因为我做常规图表,例如基本柱形图、基本条形图等。 在我使用方法
events: {
load(){
if(this.renderer.export){
Highcharts.drawTable(this);
}
}
},
For 隐藏数据表之前,但它无法与钻取图表一起使用
Highcharts, How to show datatable when export PDF and not show pdf when normal with Drilldown Chart.
I want to export PDF or PNG file with Drilldown-Chart, But it's not work because I set
xAxis: {
type: 'category'
},
I don't know. How should be set xAxis.
Before I can set xAxis because I do regular charts such as Basic column, Basic bar chart and etc.
And before I using method
events: {
load(){
if(this.renderer.export){
Highcharts.drawTable(this);
}
}
},
For to hide data-table But it's can't work with drilldown charts
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请注意,在您共享的演示中,drawTable 函数应将图表作为参数,并且
var Chart = this
赋值会中断函数的工作。演示:https://jsfiddle.net/BlackLabel/dre9j6nw/
Notice that in the demo that you have shared the drawTable function should take the chart as an argument and
var chart = this
assignment breaks the function working.Demo: https://jsfiddle.net/BlackLabel/dre9j6nw/