anychart.onDocumentReady(function () {
var map = anychart.map();
{'id': 'AU.JB', 'value': 1.5},
{'id': 'AU.NT', 'value': 2},
{'id': 'AU.WA', 'value': 3.2},
{'id': 'AU.NS', 'value': 2.7}
{'id': 'AU.CT', 'value': 1.12},
{'id': 'AU.SA', 'value': 2.9},
{'id': 'AU.VI', 'value': 3.86},
{'id': 'AU.QL', 'value': 1.1},
{'id': 'AU.TS', 'value': 1.6}
map.title().useHtml(true).hAlign('center');
map.title('<span style="font-size: 14px;">Labels Settings</span><br><span style="font-size:12px;">Set custom position for inside labels through the data set</span>');
var series_1 = map.choropleth(data_1);
var series_2 = map.choropleth(data_2);
series_1.tooltip().format("More women");
series_2.tooltip().format("More men");
map.container('container');