FusionCharts - Data Enabled Markers with connectors

Created using FusionCharts Suite XT - www.fusioncharts.com

by Shamasis Bhattacharya

HTML

<script src="http://static.fusioncharts.com/code/latest/fusioncharts.js"></script>
<script src="http://static.fusioncharts.com/code/latest/fusioncharts.maps.js"></script>
<script src="http://static.fusioncharts.com/code/latest/maps/fusioncharts.usa.js"></script>
<script src="http://static.fusioncharts.com/code/latest/themes/fusioncharts.theme.fint.js"></script>
<!-- Using Data Enabled Markers with connectors in Map showing National  warehouses in Claifornia, Texas and North Carolina with their strengths and their connected States  -->
<div id="chart-container">FusionCharts will render here</div>

JavaScript

FusionCharts.ready(function() {
    var officeLoc = new FusionCharts({
        type: 'usa',
        renderAt: 'chart-container',
        width: '600',
        height: '400',
        dataFormat: 'json',
        dataSource: {
            "map": {
                "theme": "fint",
                "useHoverColor": "0",
                "caption": "Warehouses and their covering States",
                "subcaption": "Harry's Supermart",
                "fillColor": "#008ee4",
                "useValuesForMarkers": "1",
                "numberPrefix": "$",
                "showMarkerLabels": "0",
                "connectorColor": "#90e501",
                "connectorDashed": "1",
                "connectorThickness": "2",
                "markerFillColor": "#f8bd19",
                "markerBorderThickness": "0",
                "markerRadius": "1",
                "defaultMarkerShape": "circle"
            },
            "markers": {
                "items": [{
                    "shapeId": "circle",
                    "id": "WA",
                    "x": "54.5",
                    "y": "44.8",
                    "label": "Washington"
                }, {
                    "shapeId": "circle",
                    "id": "OR",
                    "x": "58.3",
                    "y": "101.7"
                }, {
                    "shapeId": "circle",
                    "id": "ID",
                    "x": "132.8",
                    "y": "110.7"
                }, {
                    "shapeId": "circle",
                    "id": "MT",
                    "x": "188.8",
                    "y": "45.1"
                }, {
                    "shapeId": "circle",
                    "id": "WY",
                    "x": "220",
                    "y": "121"
                }, {
                    "shapeId": "circle",
                    "id": "AZ",
                    "x": "165",
                    "y": "261"
                }, {
                    "shapeId":...