anychart.onDocumentReady(function () {
var dataSet = anychart.data.set([
{id: 'FR.AO', title: 'Strasbourg', value: 928},
{id: 'FR.AC', title: 'Bordeaux', value: 192},
{id: 'FR.AR', title: 'Lyon', value: 963},
{id: 'FR.PL', title: 'Nantes', value: 266},
{id: 'FR.BF', title: 'Dijon', value: 518},
{id: 'FR.BT', title: 'Rennes', value: 324}
var map = anychart.map();
map.geoData(anychart.maps.france);
var series = map.choropleth(dataSet);
map.title('Set point translation');
map.container('container');
var point = series.getPoint(0);
point.translation(20, 30);