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