<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
anychart.onDocumentReady(function () {
var chart = anychart.line([16, 30, 45, 12, 5], [1, 51, 23, 64, 12], [18, 25, 10, 20, 35]);
// Enables legend.
chart.legend(true);
chart.title("Enable chart legend.");
chart.container("container");
chart.draw();
});