Highcharts Demo
author(s): Torstein Hønsi
by kzoon
HTML
<script src="https://code.highcharts.com/highcharts.js"></script>
<div id="container" style="height: 400px; width: 100px"></div>
JavaScript
Highcharts.chart('container', {
"chart": {
"reflow": false,
"type": "column",
"animation": false,
"inverted": true,
"borderRadius": 0,
"backgroundColor": "rgba(255,255,255,1)",
"plotBackgroundColor": "rgba(255,255,255,0)",
"spacingRight": 5,
"spacingBottom": 10,
"spacingLeft": 0,
"scAnimateChanges": false
},
"drilldown": {},
"title": { "text": "" },
"subtitle": { "text": "" },
"legend": { "enabled": false },
"tooltip": {
"enabled": true,
"backgroundColor": "rgba(255,255,255,1)",
"style": {
"fontFamily": "'Lucida Grande', 'Lucida Sans Unicode'",
"fontSize": "11px",
"color": "rgba(60,60,60,1)",
"whiteSpace": "normal"
},
"backgroundColor": "rgba(255,255,255,1)",
"hideDelay": 10,
"outside": true
},
"plotOptions": {
"column": {
"animation": false,
"shadow": false,
"stickyTracking": false,
"zIndex": 11,
"dataLabels": {
"enabled": false,
"borderColor": "rgba(0,0,0,1)",
"style": {
"fontFamily": "'Lucida Grande', 'Lucida Sans Unicode'",
"fontSize": "11px",
"fontWeight": "normal",
"color": "rgba(60,60,60,1)",
"textOutline": false
},
"allowOverlap": true,
"scFormat": {
"yValue": { "enabled": true },
"annotation": { "style": { "color": "rgba(194,55,35,1)" } }
},
"scSelection": {}
},
...