Highcharts Demo

author(s): Torstein Hønsi

by Rajesh Danabal

HTML

<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/highcharts-more.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<script src="https://code.highcharts.com/modules/export-data.js"></script>

<div id="container" style="min-width: 400px; max-width: 600px; height: 400px; margin: 0 auto"></div>

JavaScript

Highcharts.chart('container', {
  "chart": {
    "inverted": false,
    "events": {
      
    },
    "polar": true,
    "type": "line"
  },
  "title": {
    "text": "",
    "align": "center",
    "style": {
      "color": "#000000",
      "fontSize": "12px",
      "fontFamily": "Times New Roman"
    }
  },
  "subtitle": {
    "text": "",
    "style": {
      "color": "#777777",
      "fontSize": "10px",
      "fontFamily": "Times New Roman"
    }
  },
  "legend": {
    "enabled": true,
    "align": "left",
    "verticalAlign": "top",
    "title": {
      "text": "",
      "style": {
        "color": "#777777",
        "fontFamily": "Times New Roman",
        "fontSize": "12px"
      }
    },
    "itemHoverStyle": {
      "color": "#777777"
    },
    "itemStyle": {
      "fontSize": "12px",
      "color": "#777777",
      "fontFamily": "Times New Roman"
    },
    "rtl": false
  },
  "xAxis": {
    "crosshair": true,
    "opposite": false,
    "reversed": false,
    "lineColor": "#ffffff",
    "lineWidth": 0,
    "title": {
      "text": "",
      "style": {
        "color": "#777777",
        "fontSize": "12px",
        "fontFamily": "Times New Roman"
      }
    },
    "gridLineWidth": 0,
    "gridLineColor": "#ffffff",
    "plotBands": [
      {
        "color": null,
        "from": null,
        "to": null
      }
    ],
    "categories": [
      "Accessories",
      "Bikes",
      "Clothing"
    ]
  },
  "yAxis": {
    "gridLineWidth": 0,
    "gridLineColor": "#ffffff",
    "plotBands": [
      {
        "color": null,
        "from": null,
        "to": null
      }
    ],
    "opposite": false,
    "reversed": false,
    "lineColor": "#ccd6eb",
    "lineWidth": 0,
    "labels": {
      "enabled": true,
      "style": {
        "color": "#777777",
        "fontSize": "12px",
        "fontFamily": "Times New Roman"
      }
    },
    "title": {
      "text": "",
      "style": {
        "color": "#777777",
        "fontSize": "12px",
        "fontFamily":...