<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
anychart.onDocumentReady(function () {
var chart = anychart.cartesian();
chart.line([10, 4, 17, 20, 16, 35, 6, 15, 19, 25, 34, 42, 14, 64, 55, 34, 40, 25]);
chart.xAxis(true);
chart.yAxis(true);
var scroller = chart.xScroller();
scroller.enabled(true);
// Gets scroller orientation.
var scrollerOrientation = scroller.orientation();
chart.title("Scroller orientation is " + scrollerOrientation);
chart.container("container");
chart.draw();
});