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([10, 4, 17, 20, 16, 35, 6, 15]);
3
4
// Disables chart credits.
5
// You can't customize credits without a license key. See https://www.anychart.com/buy/ to learn more.
6
chart.credits(false);
7
8
chart.container("container");
9
chart.draw();
10
});