在Highchart中,为什么饼图的下钻数据颜色不一样?

In Highchart, why drilldown data of pie chart is not of same color?

参考链接: http://www.highcharts.com/demo/pie-drilldown http://www.highcharts.com/demo/column-drilldown

在列向下钻取主栏和它的向下钻取数据栏颜色相同。 为什么这不在 Pie Drilldown 中? 我需要为此设置配色方案吗? 你能帮忙吗?

对于每个向下钻取,您需要将 colorByPoint 标志设置为 false

示例:

    series: [{
        name: 'Microsoft Internet Explorer',
        colorByPoint: false,
        id: 'Microsoft Internet Explorer',
        data: [...]
    },{

看到这个工作 fiddle: http://jsfiddle.net/mg00wu3a/