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 customColorRange = anychart.standalones.colorRange();
5
customColorRange.parentBounds(0, 0, 400, 50);
6
7
// Set color line size.
8
customColorRange.colorLineSize(30);
9
10
customColorRange.container(stage);
11
customColorRange.draw();
12
});