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.cartesian();
3
chart.line([10, 4, 17, 20, 16, 35, 6, 15, 19, 25, 34, 42, 14, 64, 55, 34, 40, 25]);
4
chart.xAxis(true);
5
chart.yAxis(true);
6
7
var zoom = chart.xZoom();
8
zoom.setTo(0, 0.5);
9
10
var scroller = chart.xScroller();
11
scroller.enabled(true);
12
// Sets mode.
13
scroller.allowRangeChange(false);
14
15
chart.container("container");
16
chart.draw();
17
});