anychart.onDocumentReady(function () {
url: "https://static.anychart.com/images/docs/seat_map/house.svg",
success: function (svgData) {
function createSeatMap(svg){
var chart = anychart.seatMap();
chart.title("SVG map with its original colors");
seatMapSeries = chart.choropleth();
{id: "Hall", value: "720"},
{id: "Room2", value: "165"},
{id: "Room1", value: "143"},
{id: "Kitchen", value: "208"}
chart.container("container");