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([300, 250, 150]);
3
chart.addPointer(0, 1, 2);
4
5
// Get legend.
6
var legend = chart.legend();
7
8
legend.enabled(true);
9
legend.position('right');
10
legend.itemsLayout('vertical');
11
legend.align('top');
12
13
chart.title('Get and modify legend object');
14
chart.container('container');
15
chart.draw();
16
});