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
3
// data
4
var data = anychart.data.set([
5
[2005, 10000],
6
[2006, 12000],
7
[2007, 18000],
8
[2008, 19000],
9
[2009, 29000]
10
]);
11
12
// chart type
13
var chart = anychart.line();
14
15
// set data
16
var series = chart.line(data);
17
var tooltip = series.tooltip();
18
tooltip.format("Year: {%x}\nSales: {%Value}");
19
20
// set y scale ticks interval
21
var yScale = chart.yScale();
22
yScale.minimum(0);
23
yScale.maximum(30000);
24
var yTicks = chart.yScale().ticks();
25
yTicks.interval(5000);
26
27
// adjust y axis labels
28
var yLabels = chart.yAxis().labels();
29
yLabels.format("${%Value}");
30
31
// set range marker
32
var range = chart.rangeMarker();
33
range.scale(chart.yScale());
34
range.from(0);
35
range.to(30000);
36
range.fill({
37
keys: [".1 #009900", ".5 #ffa000", ".9 #dd2c00"],
38
angle: -90,
39
opacity: 0.5
40
});
41
42
// set left text marker
43
var textMarker = chart.textMarker();
44
textMarker.axis(chart.yAxis());
45
textMarker.align("center");
46
textMarker.anchor("center");
47
textMarker.offsetX(10);
48
textMarker.value(25000);
49
textMarker.fontColor("#212121");
50
textMarker.text("Good");
51
textMarker.fontSize(13);
52
53
// set text marker at the center
54
var textMarker1 = chart.textMarker(2);
55
textMarker1.axis(chart.yAxis());
56
textMarker1.align("center");
57
textMarker1.anchor("center");
58
textMarker1.offsetX(10);
59
textMarker1.value(5000);
60
textMarker1.fontColor("#212121");
61
textMarker1.text("Severe");
62
textMarker1.fontSize(13);
63
64
// set text marker at the center
65
var textMarker2 = chart.textMarker(1);
66
textMarker2.axis(chart.yAxis());
67
textMarker2.align("center");
68
textMarker2.anchor("center");
69
textMarker2.offsetX(10);
70
textMarker2.value(15000);
71
textMarker2.fontColor("#212121");
72
textMarker2.text("Average");
73
textMarker2.fontSize(13);
74
75
// draw
76
chart.container("container");
77
chart.draw();
78
});