Highcharts,如何在导出 PDF 时显示数据表,而在正常情况下使用钻取图表时不显示 pdf

发布于 2025-01-09 13:30:25 字数 496 浏览 0 评论 0原文

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 技术交流群。

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

发布评论

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

评论(1

说好的呢 2025-01-16 13:30:25

请注意,在您共享的演示中,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/

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