<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
anychart.onDocumentReady(function () {
var chart = anychart.line([
{x: 'January', value: 2},
{x: 'February', value: 5},
{x: 'March', value: 3},
{x: 'April', value: 9},
{x: 'May', value: 4}
]);
// Disables chart credits.
// You can't customize credits without a license key. See https://www.anychart.com/buy/ to learn more.
chart.credits(false);
chart.title('Disables chart credits');
chart.container('container');
chart.draw();
});