Standard legend chart

by kzoon

HTML

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

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

JavaScript

Highcharts.chart('container', {
 
        "chart": {
            "reflow": false,
            "height": 548,
            "type": "column",
            "animation": false,
            "borderRadius": 0,
            "backgroundColor": "rgba(255,255,255,0)",
            "plotBackgroundColor": "rgba(255,255,255,0)",
            "spacingTop": 0,
            "spacingBottom": 10,
            "scAnimateChanges": false,
            "scAllowHidingSeries": true,
            "scHandleHideOnServer": null
        },
        "drilldown": {},
        "title": {
            "text": "",
            "margin": 0
        },
        "subtitle": {
            "text": "",
            "margin": 0
        },
        "legend": {
            "verticalAlign": "top",
            "layout": "horizontal",
            "alignColumns": false,
            "margin": 10,
            "backgroundColor": "rgba(255,255,255,0)",
            "borderWidth": 1,
            "borderColor": "rgba(177,177,177,1)",
            "squareSymbol": false,
            "symbolRadius": 0,
            "itemStyle": {
                "fontFamily": "'Lucida Grande', 'Lucida Sans Unicode'",
                "fontSize": "11px",
                "fontWeight": "normal",
                "color": "rgba(60,60,60,1)"
            }
        },
        "tooltip": {
            "enabled": false,
            "style": {}
        },
        "plotOptions": {
            "column": {
                "animation": false,
                "stickyTracking": false,
                "zIndex": 11,
                "dataLabels": {
                    "enabled": false,
                    "borderColor": "rgba(0,0,0,1)",
                    "style": {
                        "textOutline": false,
                        "textAlign": "center"
                    },
                    "allowOverlap": true,
                    "useHTML": true,
                    "scFormat": { "yValue": { "enabled": true } },
                    "scSelection": {}
              ...