<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([
['First cell', 2, 3],
[4, 'Fifth cell', 6],
[7, 8, 'Ninth cell']
]);
var cell = table.getCell(1, 1);
cell.fontSize(20);
// Set font opacity.
cell.fontOpacity(0.5);
table.container(stage);
table.draw();
});