<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
anychart.onDocumentReady(function () {
var chart = anychart.line();
chart.line([10, 4, 17, 20, 16, 35, 6, 15]);
// Gets title.
var title = chart.title();
title.enabled(true);
title.fontColor("#F44336");
title.text("Custom title");
chart.container("container");
chart.draw();
});