anychart.onDocumentReady(function () {
var stage = anychart.graphics.create("container", "100%", "100%");
["Winter", 1.1, 1, 2, 1.8, 0.1, 0.5, 1.4],
["Spring", 1.6, 2, 1.5, 1.9, 0.2, 1.1, 1.4],
["Summer", 1.4, 1.9, 0.5, 0.9, 0.3, 1.8, 1.2],
["Fall", 1.9, 1.3, 1.1, 0.3, 0.4, 1.7, 0.9]
title = anychart.standalones.title();
title.text("This is the title");
table = anychart.standalones.table();
table.bounds("65%", "20%", "30%", "60%");
["", "Winter", "Spring", "Summer", "Fall"],
["Store 1", 1.1, 1.6, 1.4, 1.9],
["Store 2", 1, 2, 1.9, 1.3],
["Store 3", 2, 1.5, 0.5, 1.1],
["Store 4", 1.8, 1.9, 0.9, 0.3],
["Store 5", 0.1, 0.2, 0.3, 0.4],
["Store 6", 0.5, 1.1, 1.8, 1.7],
["Store 7", 1.4, 1.4, 1.2, 0.9]