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 area chart type
16
var chart = anychart.area();
17
18
// create a series with the mapped active data
19
var actSeries = chart.splineArea(activeData);
20
21
// create series with the mapped recovered data
22
var recSeries = chart.splineArea(recoveredData);
23
24
// create series with the mapped deaths data
25
var deathsSeries = chart.splineArea(deathsData);
26
27
// force the chart to stack values by the y scale
28
chart.yScale().stackMode('value');
29
30
// set the chart title
31
chart.title('Covid-19 in Italy');
32
33
// set the labels of the axes
34
chart.xAxis().title("Date");
35
chart.yAxis().title("Number of people");
36
37
// turn on the crosshair
38
var crosshair = chart.crosshair();
39
crosshair.enabled(true)
40
.yStroke(null)
41
.xStroke('#fff')
42
.zIndex(39);
43
crosshair.yLabel().enabled(false);
44
45
// turn on the legend
46
chart.legend(true);
47
48
// turn on the chart animation
49
chart.animation(true);
50
51
// set the container id for the chart
52
chart.container('container');
53
54
// initiate chart drawing
55
chart.draw();
56
});
57
});