anychart.onDocumentReady(function() {
var dataSet = anychart.data.set([
{id: "AU.CT", value: 15},
{id: "AU.VI", value: 23},
{id: "AU.WA", value: 86},
{id: "AU.QL", value: 16},
{id: "AU.NS", value: 32},
{id: "AU.NT", value: 64},
{id: "AU.TS", value: 28},
var dataSetForSeries = dataSet.mapAs({id: "id"});
var map = anychart.map();
map.geoData(anychart.maps.australia);
map.title("Change the text for the clipboard");
map.choropleth(dataSetForSeries);
var currentInteractivity = map.interactivity();
currentInteractivity.copyFormat(function() {
return "There are "+ this.point.get("value") + " sheep farms in " + this.point.getFeatureProp()["name"];
map.container("container");