anychart.onDocumentReady(function () {
stage = anychart.graphics.create("container");
var chart = anychart.line();
dataSet1 = ([1.1, 1.6, 1.4, 1.9]);
dataSet2 = ([1, 2, 1.9, 1.3]);
series1 = chart.line(dataSet1);
series2 = chart.line(dataSet2);
title = anychart.standalones.title();
title.text("This is the title");
table = anychart.standalones.table();
table.bounds("80%", "35%", 200, 100);