<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
anychart.onDocumentReady(function () {
var chart = anychart.line([8, 7, 3, 2], [6, 1, 2, 5]);
chart.legend(true);
var legend = chart.legend();
// Set mode.
legend.itemsSourceMode('categories');
chart.title('Set items source mode');
chart.container('container');
chart.draw();
});