<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
anychart.onDocumentReady(function () {
var chart = anychart.line([1.1, 1.4, 1.3, 1.6]);
// defines edition.
if (!anychart.DEVELOP) {
chart.title("It is production edition");
} else {
chart.title("It is developer edition");
chart.container("container");
chart.draw();
});