如何在 Highcharts 中定义向下钻取饼图的格式

How to define format for Drilldown Pie Charts in Highcharts

如何在 Highcharts 中定义向下钻取饼图的格式,类似于我们使用 series.dataLabels.format 为普通饼图定义的格式?

这是我为普通饼图编写的代码。一旦我向下钻取,我希望它采用 {point.name}({point.count}): {point.y:.1f}% 以外的其他格式。

series: {                         
    dataLabels: {
        enabled: true,
        format: '{point.name}({point.count}): {point.y:.1f}% ',
        inside: true,
        position: {
            x: 10,
            y: -100
        }
    }
}

您可以在 drilldown.series 选项中设置所需的格式。

代码:

drilldown: {
        series: [
            {
                    dataLabels: {
                    format: '{point.name} test test test'
                },
                name: "Chrome",
                id: "Chrome",
                data: [
                    [
                        "v65.0",
                        0.1
                    ]...
         }]
     }

演示:https://jsfiddle.net/BlackLabel/f981q3vj/

API: https://api.highcharts.com/highcharts/drilldown.series