anychart.onDocumentReady(function () {
svgString = "<svg xmlns='https://www.w3.org/2000/svg'>" +
"<circle id='Seat 1' cx='50' cy='50' r='20'></circle>" +
"<circle id='Seat 2' cx='100' cy='50' r='20'></circle>" +
"<circle id='Seat 3' cx='150' cy='50' r='20'></circle>" +
var chart = anychart.seatMap();
chart.geoData(svgString);
chart.title("Load SVG from a string");
seatmap = chart.choropleth([
{id: "Seat 1", value: "$10"},
{id: "Seat 2", value: "$10"}
chart.title("Set Seat Map Source as an SVG string.");
seatmap.tooltip().title("Description");
chart.container("container");