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
// Gets end ratio.
7
scroller.endRatio();
8
// Returns 1.
9
scroller.container(stage);
10
scroller.draw();
11
});