anychart.onDocumentReady(function () {
{'id': 'AU.WA', 'value': 300},
{'id': 'AU.JB', 'value': 270},
{'id': 'AU.NS', 'value': 240},
{'id': 'AU.VI', 'value': 75},
{'id': 'AU.NT', 'value': 130},
{'id': 'AU.TS', 'value': 190},
{'id': 'AU.CT', 'value': 100},
{'id': 'AU.SA', 'value': 280},
{'id': 'AU.QL', 'value': 220}
var map = anychart.map();
map.geoData(anychart.maps.australia);
map.title("Single Hue Progression - Ordinal Scale");
var series = map.choropleth(data);
series.stroke("2 white 0");
series.colorScale(anychart.scales.ordinalColor([{less:200},{from:200, to:250},{greater:250}]));
var colors = anychart.color.singleHueProgression('#0068BC');
series.colorScale().colors(colors);
map.container('container');