Reputation: 110
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
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