Maulik sojitra
Maulik sojitra

Reputation: 110

High Chart sunburst chart start data from inner level

I have implement sunburst chart.

https://www.highcharts.com/demo/sunburst

now i want to start my chart from inner level

i.e. Please check above link, In this chart i want to start with Southern Asia without removing parent node Wordl

Upvotes: 1

Views: 176

Answers (1)

Maulik sojitra
Maulik sojitra

Reputation: 110

I have found solution from Highcharts Documentation

We have to just set our our value rootId

 series: [{
    type: "sunburst",
    data: this.data,
    rootId:'Southern Asia'}]

Upvotes: 1

Related Questions