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 bar = chart.bar(2);
5
bar.stroke('3 #ee7600');
6
7
// Get pointer stroke.
8
var stroke = bar.stroke();
9
10
chart.width(600).height(400);
11
chart.title({fontColor: stroke.color, text: 'Get and use pointer stroke'});
12
chart.container('container');
13
chart.draw();
14
});