anychart.onDocumentReady(function () {
{'id': 'AU.WA', 'value': 300},
{'id': 'AU.NS', 'value': 240},
{'id': 'AU.VI', 'value': 75},
{'id': 'AU.NT', 'value': 130},
{'id': 'AU.TS', 'value': 190},
var map = anychart.map();
map.geoData(anychart.maps.australia);
map.title().useHtml(true).hAlign('center');
map.title('<span style="font-size: 18px;">Data Setting</span><br><span style="font-size:12px;">Move the mouse over the districts to see which have values</span>');
var series = map.choropleth(data);
series.stroke('#000 .3');
series.colorScale(anychart.scales.linearColor('#FFEBD6', '#C40A0A'));
series.labels().fontColor('black');
map.container('container');