anychart.onDocumentReady(function () {
{'id': 'AU.WA', 'value': 170},
{'id': 'AU.NS', 'value': 260},
{'id': 'AU.VI', 'value': 75},
{'id': 'AU.NT', 'value': 130},
{'id': 'AU.TS', 'value': 210},
var map = anychart.map();
map.geoData(anychart.maps.australia);
map.unboundRegions().stroke('green');
map.title().useHtml(true).hAlign('center');
map.title('<span style="font-size: 18px;">Ordinal Color Scale <br> Single Hue Color Progression');
var cr = map.colorRange();
cr.ticks().stroke('rgb(216,216,216)');
cr.ticks().position('center').length(15);
series = map.choropleth(data);
series.stroke('#000 .3');
series.labels().fontColor('black');
series.selected().fill('#5588ff');
ocs = anychart.scales.ordinalColor([
ocs.colors(['rgb(253,225,86)', 'rgb(248,196,57)', 'rgb(244,168,19)', 'rgb(198,109,1)', 'rgb(152,58,0)']);
map.container('container');