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.gauges.circular([{value: 20}, {value: 10}]);
3
chart.axis();
4
chart.needle({fill: '#FF8A65'});
5
chart.needle(1, {fill: '#4DB6AC'});
6
7
// Disable first needle pointer.
8
chart.needle(false);
9
10
chart.title('Disable first needle pointer');
11
chart.container('container');
12
chart.draw();
13
});