Highcharts Demo

author(s): Torstein Hønsi

by OysteinAmundsen

HTML

<script src="https://code.highcharts.com/highcharts.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: 310px; max-width: 800px; height: 400px; margin: 0 auto"></div>

JavaScript

Highcharts.chart('container', {
	"title":{},
  "legend":{"enabled":false},
  "credits":{"enabled":false},
  "plotOptions":{
  	"pie":{
    	"shadow":false,
      "center":["50%","50%"],
      "depth":40,
      "dataLabels":{"enabled":false},
      "showInLegend":true
    }
  },
  "chart":{
  	"type":"bar","animation":false,"margin":[0,0,0,0]
  },
  "series":[
  	{"name":"current","data":[{"x":1,"y":22.95}]}
  ]
});