<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
anychart.onDocumentReady(function () {
var chart = anychart.scatter([23, 41, 23, 41, 23, 11, 23, 5]);
// Gets default series type.
var type = chart.defaultSeriesType();
chart.title("The current series type is " + type);
chart.container("container");
chart.draw();
});