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 barPointer = chart.bar(2);
7
barPointer.selectStroke("#4CAF50");
8
9
// Get pointer select stroke.
10
var selectStroke = barPointer.selectStroke();
11
12
chart.title({fontColor: selectStroke, text: "Get and use pointer select stroke"});
13
chart.container(stage);
14
chart.draw();
15
16
// Selects pointer.
17
barPointer.select();
18
});