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.linear([15, 20, 25, 30, 44]);
3
4
var thermometerPointer = chart.thermometer(4);
5
thermometerPointer.bulbRadius('100%');
6
7
// Get bulb radius.
8
var bulbRadius = thermometerPointer.bulbRadius();
9
10
chart.width(600).height(400);
11
chart.title('Bulb radius is ' + bulbRadius);
12
chart.container('container');
13
chart.draw();
14
});