<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
anychart.onDocumentReady(function () {
var stage = anychart.graphics.create("container");
var table = anychart.standalones.table();
table.contents([
[1, 2, 3],
[4, 5, 6],
[7, 8, 9]
]);
var getPadding = table.cellPadding();
getPadding.right(100); // sets right padding
table.container(stage);
table.draw();
});