anychart.onDocumentReady(function () {
var dataSet = anychart.data.set([
{id: 'FR.A', title: 'Strasbourg', value: 928},
{id: 'FR.B', title: 'Bordeaux', value: 192},
{id: 'FR.C', title: 'Clermont-Ferrand', value: 963},
{id: 'FR.P', title: 'Caen', value: 266},
{id: 'FR.D', title: 'Dijon', value: 518},
{id: 'FR.E', title: 'Rennes', value: 324}
var map = anychart.map();
map.geoData(anychart.maps.france);
var series = map.choropleth(dataSet);
return this.getData('title');
map.title('Set Y center for the point label');
map.container('container');
var point = series.getPoint(0);