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([
3
{value: 15},
4
{value: 20},
5
{value: 25},
6
{value: 30},
7
{value: 44}
8
]);
9
chart.thermometer(3);
10
11
// Set axis by index
12
chart.axis(0, {orientation: 'left', offset: '-0.18%', width: '0'});
13
chart.axis(1, {orientation: 'right', offset: '3.15%', width: '0', minorTicks: true});
14
15
chart.title('Set axis parameters as object by index');
16
chart.container('container');
17
chart.draw();
18
});