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 stage = anychart.graphics.create('container');
3
4
var scroller = anychart.standalones.scroller();
5
scroller.parentBounds(10, 0, 400, 60);
6
7
// Get end ratio.
8
scroller.endRatio();
9
// Returns 1.
10
11
scroller.container(stage);
12
scroller.draw();
13
});