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
chart.legend(true);
6
7
var barPointer = chart.bar(2);
8
9
// Set pointer legend item.
10
barPointer.legendItem({text: "Blue pointer", iconType: "circle"});
11
12
chart.title("Set pointer legend item");
13
chart.container(stage);
14
chart.draw();
15
});