-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsampleData.js
68 lines (68 loc) · 940 Bytes
/
sampleData.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
const sampleData = [
{
region: "World",
date: {
year: 2020,
month: 04,
day: 01
},
data: {
body: [0, 1, 2, 3, 4]
}
},
{
region: "World",
date: {
year: 2020,
month: 04,
day: 02
},
data: {
body: [0, 10, 20, 30, 40]
}
},
{
region: "Germany",
date: {
year: 2020,
month: 04,
day: 03
},
data: {
body: [0, 100, 200, 300, 400]
}
},
{
region: "Germany",
date: {
year: 2020,
month: 04,
day: 04
},
data: {
body: [0, 1000, 2000, 3000, 4000]
}
},
{
region: "Germany",
date: {
year: 2020,
month: 04,
day: 05
},
data: {
body: [0, 10000, 20000, 30000, 40000]
}
},
{
region: "Europe",
date: {
year: 2020,
month: 04,
day: 05
},
data: {
body: [0, 1111, 111, 11, 1]
}
}
];