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

时间:2019-03-20 09:29:20

标签: javascript charts highcharts pie-chart

我正在使用Highcharts的饼图,我想下载具有自定义列名称的.xls文件。默认情况下,列的名称为“类别”和“您的系列名称”(在我的情况下为“百分比(%)”)。 主要是我想更改类别名称,但找不到方法。

这是图表的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

1 个答案:

答案 0 :(得分:0)

使用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