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');
3
4
var pattern = stage.pattern(new anychart.graphics.math.Rect(0, 0, 20, 20));
5
pattern.diagonalCross(9, 8, 8).stroke('1.5 #fffaf0');
6
7
var chart = anychart.gauges.linear([15, 20, 25, 30, 44]);
8
9
var barPointer = chart.bar(2);
10
11
// Set hatch fill.
12
barPointer.hatchFill(pattern);
13
14
chart.title('Set hatch fill as a pattern');
15
chart.width(600).height(400);
16
chart.container(stage);
17
chart.draw();
18
});