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 green
32
var rangeMarker = chart.rangeMarker();
33
rangeMarker.axis(chart.yAxis());
34
rangeMarker.from(20000);
35
rangeMarker.to(30000);
36
rangeMarker.fill("#009900 0.4");
37
38
// set red marker
39
var rangeMarker1 = chart.rangeMarker(1);
40
rangeMarker1.axis(chart.yAxis());
41
rangeMarker1.fill("#ffa000 0.4");
42
rangeMarker1.from(10000);
43
rangeMarker1.to(20000);
44
45
// set green marker
46
var rangeMarker2 = chart.rangeMarker(2);
47
rangeMarker2.axis(chart.yAxis());
48
rangeMarker2.from(0);
49
rangeMarker2.to(10000);
50
rangeMarker2.fill("#dd2c00 0.4");
51
52
// set left text marker
53
var textMarker = chart.textMarker(0);
54
textMarker.axis(chart.yAxis());
55
textMarker.align("left");
56
textMarker.anchor("leftcenter");
57
textMarker.offsetX(5);
58
textMarker.value(25000);
59
textMarker.fontColor("#212121");
60
textMarker.text("Good: [20,000.00 - 30,000.00]");
61
textMarker.fontSize(13);
62
63
// set text marker at the center
64
var textMarker1 = chart.textMarker(1);
65
textMarker1.axis(chart.yAxis());
66
textMarker1.align("center");
67
textMarker1.anchor("center");
68
textMarker1.value(15000);
69
textMarker1.fontColor("#212121");
70
textMarker1.hAlign("center");
71
textMarker1.text("Average\n[20,000.00 - 30,000.00]");
72
textMarker1.fontSize(13);
73
74
// set text marker at the center
75
var textMarker2 = chart.textMarker(2);
76
textMarker2.axis(chart.yAxis());
77
textMarker2.align("right");
78
textMarker2.anchor("rightcenter");
79
textMarker2.offsetX(5);
80
textMarker2.value(5000);
81
textMarker2.fontColor("#212121");
82
textMarker2.text("Severe");
83
textMarker2.fontSize(13);
84
85
// draw
86
chart.container("container");
87
chart.draw();
88
});