HTMLcopy
1
<script src="https://cdn.anychart.com/releases/8.8.0/js/anychart-core.min.js"></script>
2
<script src="https://cdn.anychart.com/releases/8.8.0/js/anychart-data-adapter.min.js"></script>
3
<script src="https://cdn.anychart.com/releases/8.8.0/js/anychart-cartesian.min.js"></script>
4
<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
anychart.data.loadCsvFile("https://static.anychart.com/git-storage/word-press/data/covid-19-italy/data.csv", function (data) {
3
// set the data and ignore the first row that contains headers
4
var dataSet = anychart.data.set(data, {ignoreFirstRow: true});
5
6
// map data for the deaths series
7
var deathsData = dataSet.mapAs({ 'x': 0, 'value': 2 });
8
9
// map data for the recovered series
10
var recoveredData = dataSet.mapAs({ 'x': 0, 'value': 3 });
11
12
// map data for the active series
13
var activeData = dataSet.mapAs({ 'x': 0, 'value': 4 });
14
15
// specify the chart type
16
var chart = anychart.area();
17
18
// helper function to setup series and give them appropriate names in order to distinguish and label them properly
19
var setupSeries = function (series, name) {
20
series.name(name)
21
// setting the markers
22
series.hovered().stroke('3 #fff 1');
23
series.hovered().markers()
24
.enabled(true)
25
.type('circle')
26
.size(4)
27
.stroke('1.5 #fff');
28
series.markers().zIndex(100);
29
};
30
31
// create a series with the mapped active data
32
var actSeries = chart.splineArea(activeData)
33
.fill("#1E8FCD")
34
.stroke("#4b9bc6")
35
setupSeries(actSeries, 'Active');
36
37
// create a series with the mapped recovered data
38
var recSeries = chart.splineArea(recoveredData)
39
.fill("#B3C67D")
40
.stroke("#b9c1a0")
41
setupSeries(recSeries, 'Recovered');
42
43
// create a series with the mapped deaths data
44
var deathsSeries = chart.splineArea(deathsData)
45
.fill("#b3315d")
46
.stroke("#b5617d")
47
setupSeries(deathsSeries, 'Deaths');
48
49
// force the chart to stack values by the y scale
50
chart.yScale().stackMode('percent');
51
52
// set the chart title
53
chart.title('Covid-19 in Italy');
54
55
// set the labels of the axes
56
chart.xAxis().title("Date");
57
chart.yAxis().title("Number of people");
58
59
// turn on the crosshair
60
var crosshair = chart.crosshair();
61
crosshair.enabled(true)
62
.yStroke(null)
63
.xStroke('#fff')
64
.zIndex(39);
65
crosshair.yLabel().enabled(false);
66
67
// turn on the legend
68
chart.legend(true);
69
70
// turn on the chart animation
71
chart.animation(true);
72
73
// set the container id for the chart
74
chart.container('container');
75
76
// initiate chart drawing
77
chart.draw();
78
});
79
});