anychart.onDocumentReady(function() {
var dataSet = anychart.data.set([
{'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>');
var series = map.choropleth(dataSet);
series.geoIdField('code_hasc');
map.container('container');