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', 600, 400);
3
4
var chart = anychart.gauges.linear([15, 20, 25, 30, 44]);
5
6
var tankPointer = chart.tank(2);
7
8
var state = tankPointer.normal();
9
10
// Set fill for the empty part of a tank.
11
state.emptyFill({color: '#FF9800', opacity: 0.3});
12
13
chart.title('Set state fill parameter for the empty part of a tank as an object');
14
chart.container(stage);
15
chart.draw();
16
});