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.line([
3
{x: 0, value: 6},
4
{x: 1, value: 10},
5
{x: 2, value: 18},
6
{x: 3, value: 11},
7
{x: 4, value: 9}
8
]);
9
chart.yScale().minimum(0);
10
chart.xScale('linear');
11
12
var controller = chart.annotations();
13
14
var annotation = controller.trendChannel();
15
annotation.xAnchor(1.3);
16
annotation.valueAnchor(13);
17
annotation.secondXAnchor(2);
18
annotation.secondValueAnchor(19);
19
annotation.thirdXAnchor(2);
20
annotation.thirdValueAnchor(16);
21
22
var customHatchFill = anychart.graphics.hatchFill('divot', '#424242', 0.5, 20);
23
24
// Set hatch fill.
25
annotation.hatchFill(customHatchFill);
26
27
chart.title('Set hatch fill parameter as an instance');
28
chart.container('container');
29
chart.draw();
30
});