eegloo
eegloo

Reputation: 171

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

References Links: http://www.highcharts.com/demo/pie-drilldown http://www.highcharts.com/demo/column-drilldown

In column-drilldown main bar and its drilldown data bars colors are same. Why this is not in Pie Drilldown? Do I need to set color scheme for this? Can you help?

Upvotes: 0

Views: 199

Answers (1)

elliot
elliot

Reputation: 498

You need to set the colorByPoint flag to false for each drilldown.

Example:

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

See this working fiddle: http://jsfiddle.net/mg00wu3a/

Upvotes: 2

Related Questions