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
setupSeries(actSeries, 'Active');
34
35
// create a series with the mapped recovered data
36
var recSeries = chart.splineArea(recoveredData);
37
setupSeries(recSeries, 'Recovered');
38
39
// create a series with the mapped deaths data
40
var deathsSeries = chart.splineArea(deathsData);
41
setupSeries(deathsSeries, 'Deaths');
42
43
// force the chart to stack values by the y scale
44
chart.yScale().stackMode('percent');
45
46
// set the chart title
47
chart.title('Covid-19 in Italy');
48
49
// set the labels of the axes
50
chart.xAxis().title("Date");
51
chart.yAxis().title("Number of people");
52
53
// turn on the crosshair
54
var crosshair = chart.crosshair();
55
crosshair.enabled(true)
56
.yStroke(null)
57
.xStroke('#fff')
58
.zIndex(39);
59
crosshair.yLabel().enabled(false);
60
61
// turn on the legend
62
chart.legend(true);
63
64
// turn on the chart animation
65
chart.animation(true);
66
67
// set the container id for the chart
68
chart.container('container');
69
70
// initiate chart drawing
71
chart.draw();
72
});
73
});