anychart.onDocumentReady(function () {
var stage = anychart.graphics.create("container");
var table = anychart.standalones.table();
table.getRow(0).height(40).fontWeight(900);
table.getCol(0).width(70).fontWeight(900);
table.rowOddFill("#F5F5F5");
table.rowEvenFill("#FFFFFF");
table.cellBorder("#B8B8B8").vAlign("middle").hAlign("center");
table.container(stage).draw();