forked from indiespirit/react-native-chart-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.js
97 lines (88 loc) · 2.1 KB
/
data.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// Mock data object used for LineChart and BarChart
const data = {
labels: ["January", "February", "March", "April", "May", "June"],
datasets: [
{
data: [-50, -20, -2, 86, 71, 100],
color: (opacity = 1) => `rgba(134, 65, 244, ${opacity})` // optional
},
{
data: [20, 10, 4, 56, 87, 90],
color: (opacity = 1) => `rgba(0, 255, 255, ${opacity})` // optional
},
{
data: [30, 90, 67, 54, 10, 2]
}
],
legend: ["Rainy Days", "Sunny Days", "Snowy Days"] // optional
};
// Mock data object used for Contribution Graph
const contributionData = [
{ date: "2016-01-02", count: 1 },
{ date: "2016-01-03", count: 2 },
{ date: "2016-01-04", count: 3 },
{ date: "2016-01-05", count: 4 },
{ date: "2016-01-06", count: 5 },
{ date: "2016-01-30", count: 2 },
{ date: "2016-01-31", count: 3 },
{ date: "2016-03-01", count: 2 },
{ date: "2016-04-02", count: 4 },
{ date: "2016-03-05", count: 2 },
{ date: "2016-02-30", count: 4 }
];
// Mock data object for Pie Chart
const pieChartData = [
{
name: "Seoul",
population: 21500000,
color: "rgba(131, 167, 234, 1)",
legendFontColor: "#7F7F7F",
legendFontSize: 15
},
{
name: "Toronto",
population: 2800000,
color: "#F00",
legendFontColor: "#7F7F7F",
legendFontSize: 15
},
{
name: "Beijing",
population: 527612,
color: "red",
legendFontColor: "#7F7F7F",
legendFontSize: 15
},
{
name: "New York",
population: 8538000,
color: "#ffffff",
legendFontColor: "#7F7F7F",
legendFontSize: 15
},
{
name: "Moscow",
population: 11920000,
color: "rgb(0, 0, 255)",
legendFontColor: "#7F7F7F",
legendFontSize: 15
}
];
// Mock data object for Progress
const progressChartData = {
labels: ["Swim", "Bike", "Run"], // optional
data: [0.2, 0.5, 0.3]
};
const stackedBarGraphData = {
labels: ["Test1", "Test2"],
legend: ["L1", "L2", "L3"],
data: [[60, 60, 60], [30, 30, 60]],
barColors: ["#dfe4ea", "#ced6e0", "#a4b0be"]
};
export {
data,
contributionData,
pieChartData,
progressChartData,
stackedBarGraphData
};