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
// Sets start ratio.
7
scroller.startRatio(0.3);
8
scroller.container(stage);
9
scroller.draw();
10
});