<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
anychart.onDocumentReady(function () {
var chart = anychart.scatter();
chart.line([
{x: 2, value: 5},
{x: 2, value: 25},
{x: 4, value: 40},
{x: 6, value: 25},
{x: 6, value: 5},
{x: 6, value: 25}
]);
// 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('Disable credits (works only with a license key)');
chart.xGrid(true).yGrid(true);
chart.container('container');
chart.draw();
});