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: 500px"></div>

JavaScript

$(function () {
    $('#container').highcharts({


     
                "chart": {
                    "reflow": false,
                    "type": "column",
                    "animation": false,
                    "borderRadius": 0,
                    "backgroundColor": "rgba(255,255,255,1)",
                    "plotBackgroundColor": "rgba(255,255,255,0)",
                    "spacingBottom": 10,
                    "scAnimateChanges": false
                },
                "title": {
                    "text": ""
                },
                "subtitle": {
                    "text": ""
                },
                "legend": {
                    "margin": 10,
                    "backgroundColor": "rgba(255,255,255,0)",
                    "borderWidth": 1,
                    "itemStyle": {
                        "fontFamily": "'Lucida Grande', 'Lucida Sans Unicode'",
                        "fontSize": "11px",
                        "fontWeight": "normal",
                        "color": "rgba(102,102,102,1)"
                    }
                },
                "tooltip": {
                    "enabled": true,
                    "style": {
                        "fontFamily": "'Lucida Grande', 'Lucida Sans Unicode'",
                        "fontSize": "11px",
                        "color": "rgba(102,102,102,1)"
                    },
                    "hideDelay": 10
                },
                "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'",
                               ...