FusionCharts - Simple World Map
Created using FusionCharts Suite XT - www.fusioncharts.com
HTML
<script src="https://static.fusioncharts.com/code/latest/fusioncharts.js"></script>
<script src="https://static.fusioncharts.com/code/latest/fusioncharts.maps.js"></script>
<div id="chart-container">
FusionCharts will render here</div>
JavaScript
FusionCharts.ready(function() {
var chart = new FusionCharts({
type: 'maps/worldwithcountries',
renderAt: 'chart-container',
width: '700',
height: '500',
dataFormat: 'json',
dataSource: {
"chart": {
"animation": "0",
"showbevel": "0",
"usehovercolor": "1",
"canvasbordercolor": "FFFFFF",
"bordercolor": "FFFFFF",
"showlegend": "1",
"showshadow": "0",
"legendposition": "BOTTOM",
"legendborderalpha": "0",
"legendbordercolor": "ffffff",
"legendallowdrag": "0",
"legendshadow": "0",
"caption": "Website Visits for the month of Jan 2014",
"connectorcolor": "000000",
"fillalpha": "80",
"hovercolor": "CCCCCC",
"showborder": "0",
"showLabels": "0"
},
//Defining color range for data range
"colorrange": {
"color": [{
"minvalue": "0",
"maxvalue": "2500",
"displayvalue": "Low",
"code": "#e44a00"
},
{
"minvalue": "2500",
"maxvalue": "5000",
"displayvalue": "High",
"code": "#f8bd19"
}
]
},
"data": [{
"id": "01",
"value": 2696
}, {
"id": "02",
"value": 2050
}, {
"id": "03",
"value": 271
}, {
"id": "04",
"value": 596
}, {
"id": "05",
"value": 599
}, {
"id": "06",
"value": 1427
}, {
"id": "07",
"value": 787
}, {
"id": "08",
"value": 1151
}, {
"id": "09",
"value": 912
}, {
"id": "10",
"value": 2078
}, {
"id": "11",
"value": 2068
}, {
"id": "12",
"value": 1743
}, {
"id": "13",
"value": 2016
}, {
"id": "14",
"value": 2721
}, {
"id":...