HTMLcopy
1
<div id="container"></div>
CSScopy
8
1
html,
2
body,
3
#container {
4
width: 100%;
5
height: 100%;
6
margin: 0;
7
padding: 0;
8
}
JavaScriptcopy
x
1
anychart.onDocumentReady(function () {
2
// create a line chart
3
var chart = anychart.line();
4
5
// add a chart title
6
chart.title('Perceived threat of COVID-19 by political affiliation (March–August 2020)');
7
8
// create a dataset (democrats)
9
var data1 = anychart.data
10
.set([
11
['Mar', 4.26, 0.1, 0.1],
12
['Apr', 4.46, 0.11, 0.11],
13
['May', 4.36, 0.126, 0.126],
14
['June', 4.29, 0.132, 0.132],
15
['July', 4.49, 0.124, 0.124],
16
['Aug', 4.47, 0.124, 0.124]
17
])
18
.mapAs({
19
x: 0,
20
value: 1,
21
valueLowerError: 2,
22
valueUpperError: 3
23
});
24
25
// create a dataset (republicans)
26
var data2 = anychart.data
27
.set([
28
['Mar', 3.9, 0.144, 0.144],
29
['Apr', 4.09, 0.172, 0.172],
30
['May', 3.71, 0.196, 0.196],
31
['June', 3.54, 0.198, 0.198],
32
['July', 3.78, 0.196, 0.196],
33
['Aug', 3.7, 0.194, 0.195]
34
])
35
.mapAs({
36
x: 0,
37
value: 1,
38
valueLowerError: 2,
39
valueUpperError: 3
40
});
41
42
// set the y-axis parameters
43
var yScale = chart.yScale();
44
yScale.minimum(3.2);
45
yScale.maximum(4.8);
46
47
var ticks = chart.yScale().ticks();
48
ticks.interval(0.2);
49
50
// set the grid
51
chart.yGrid().enabled(true).stroke({
52
// customize the stroke color
53
color: "#ededed",
54
});
55
56
// create a line series for the first dataset
57
var series1 = chart.line(data1).stroke("#031bbb", 3);
58
59
// create error bars for the first series
60
var error1 = series1.error();
61
error1.valueErrorStroke("#031bbb", 1);
62
63
// create a line series for the second dataset
64
var series2 = chart.line(data2).stroke("#de0100", 3);
65
66
// create error bars for the second series
67
var error2 = series2.error();
68
error2.valueErrorStroke("#de0100", 1);
69
70
// set a container id for the chart
71
chart.container('container');
72
73
// command to draw the chart
74
chart.draw();
75
76
});