Map legend chart start

by kzoon

HTML

<script src="https://code.highcharts.com/maps/highmaps.js"></script>
<script src="https://code.highcharts.com/maps/modules/exporting.js"></script>
<script src="https://code.highcharts.com/mapdata/custom/world.js"></script>

<div id="container"></div>

JavaScript

Highcharts.chart('container', {
 
         "chart": {
            "reflow": false,
            "type": "map",
            "animation": false,
            "borderRadius": 0,
            "backgroundColor": "rgba(255,255,255,1)",
            "plotBackgroundColor": "rgba(255,255,255,0)",
            "spacingBottom": 10,
            "scAnimateChanges": false,
            "scAllowHidingSeries": true,
            "scHandleHideOnServer": false,
             map: 'custom/world'
        },
        "drilldown": {},
        "title": {
            "text": "",
            "margin": 0
        },
        "subtitle": {
            "text": "",
            "margin": 0
        },
        "legend": {
            "align": "center",
            "verticalAlign": "top",
            "alignColumns": false,
            "margin": 20,
            "backgroundColor": "rgba(255,192,0,1)",
            "borderWidth": 1,
            "borderColor": "rgba(30,30,30,1)",
            "padding": 23,
            "symbolWidth": 250,
            "squareSymbol": false,
            "symbolRadius": 0,
            "itemStyle": {
                "fontFamily": "'Lucida Grande', 'Lucida Sans Unicode'",
                "fontSize": "11px",
                "fontWeight": "normal",
                "color": "rgba(60,60,60,1)"
            }
        },
        "tooltip": {
            "enabled": true,
            "backgroundColor": "rgba(255,255,255,1)",
            "style": {
                "fontFamily": "'Lucida Grande', 'Lucida Sans Unicode'",
                "fontSize": "11px",
                "color": "rgba(60,60,60,1)"
            },
            "useHTML": true,
            "backgroundColor": "rgba(255,255,255,1)",
            "hideDelay": 10,
            "outside": true
        },
        "plotOptions": {
            "map": {
                "turboThreshold": 0,
                "animation": false,
                "shadow": false,
                "stickyTracking": false,
                "dataLabels": {
            ...