更改 Highchart 的饼图 .xls 文件类别列名称

Change Highchart's pie chart .xls file category column name

我正在使用 Highcharts 的饼图,我想下载生成的带有自定义列名称的 .xls 文件。默认情况下,列是名称 'Category' 和 'You series name'(在我的例子中是 'Percentage (%)'。 主要是想改Category的名字,没找到方法

这是图表的 javascript 代码:

janChart = Highcharts.chart('January', {
            chart: {
                plotBackgroundColor: null,
                plotBorderWidth: null,
                plotShadow: false,
                type: 'pie'
            },
            title: {
                text: 'Applications BW Usage in January, 2019'
            },
            tooltip: {
                pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
            },
            plotOptions: {
                pie: {
                    size:'80%',
                    allowPointSelect: true,
                    cursor: 'pointer',
                    dataLabels: {
                        enabled: true,
                        format: '<b>{point.name}</b>: {point.percentage:.1f} %',
                        style: {
                            color: (Highcharts.theme && Highcharts.theme.contrastTextColor) || 'black'
                        },
                        connectorColor: 'silver'
                    }
                }
            },
            series: [{
                name: 'Percentage (%)',
                data: [
                ]
            }]
        });

.xls file image

the chart

使用columnHeaderFormatter函数:

exporting: {
    csv: {
        columnHeaderFormatter: function(item, key) {
            if (!key) {
                return 'custom title'
            }
            return false
        }
    }
},

现场演示:https://jsfiddle.net/BlackLabel/n6oLmyw3/

API参考:https://api.highcharts.com/highcharts/exporting.csv.columnHeaderFormatter