Sunburst - Color variation + Rotation

by amrutaJgtp

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/sunburst.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>

<div id="container" style="height:600px;"></div>

JavaScript

Highcharts.chart('container', {
  "chart": {
    "inverted": false,
    "backgroundColor": "rgba(255,255,255,0)",
    "plotBackgroundColor": "rgba(255,255,255,0)",
    "zoomType": null,
    "type": "sunburst"
  },
  "tooltip": {
    "enabled": true,
    "shared": false,
    "borderWidth": 1,
    "borderRadius": 1,
    "backgroundColor": "#ffffff",
    "style": {
      "color": "#000000",
      "fontSize": "1rem",
      "fontFamily": "Lucida Sans Unicode,Verdana,Helvetica,Arial",
      "fontWeight": "normal",
      "fontStyle": "normal",
      "textDecoration": "none"
    }
  },
  
  "series": [{
    "name": "Population2017",
    "internalName": "World_population__World_population__Msr_Population2017",
    "allowDrillToNode": true,
    "data": [{
      "name": "Top",
      "value": 799382879,
      "id": "TopLevelValueId",
      "color": "rgba(255,255,255,0)"
    }, {
      "id": "Americas",
      "parent": "TopLevelValueId",
      "name": "Americas",
      "value": 360033625,
      "color": "rgba(65,50,155,1)"
    }, {
      "id": "Northern America,Americas",
      "parent": "Americas",
      "name": "Northern America",
      "value": 324459463
    }, {
      "id": " United States ,Americas,Northern America,Americas",
      "parent": "Northern America,Americas",
      "name": " United States ",
      "value": 324459463
    }, {
      "id": "South America,Americas",
      "parent": "Americas",
      "name": "South America",
      "value": 35433815
    }, {
      "id": " Venezuela ,Americas,South America,Americas",
      "parent": "South America,Americas",
      "name": " Venezuela ",
      "value": 31977065
    }, {
      "id": " Uruguay ,Americas,South America,Americas",
      "parent": "South America,Americas",
      "name": " Uruguay ",
      "value": 3456750
    }, {
      "id": "Caribbean,Americas",
      "parent": "Americas",
      "name": "Caribbean",
      "value": 140347
    }, {
      "id": " United States Virgin Islands ,Americas,Caribbean,Americas",
  ...