anychart.onDocumentReady(function () {
var stage = anychart.graphics.create("container");
var table = anychart.standalones.table();
table.getCell(1,0).rowSpan(2);
table.getCell(3,0).rowSpan(3);
table.getCell(0,0).colSpan(2);
table.getRow(0).height(40).fontWeight(900);
table.getCol(0).width(70).fontWeight(900);
table.getCol(1).width(70).fontWeight(900);
table.cellBorder("#B8B8B8");
table.vAlign("middle").hAlign("center").fontSize(12);
table.container(stage).draw();