-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
Copy pathChart.data.ts
135 lines (127 loc) · 2.68 KB
/
Chart.data.ts
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
import faker from 'faker';
import { colorRed } from './data';
export const dynamicOptions = {
scales: {
y: {
beginAtZero: true,
},
},
};
export const getDynamicData = () => ({
labels: ['Red', 'Blue', 'Yellow', 'Green', 'Purple', 'Orange'],
datasets: [
{
type: 'bar',
label: 'Scale',
data: Array.from({ length: 6 }, () =>
faker.datatype.number({ min: -10, max: 10 })
),
backgroundColor: [
'rgba(255, 99, 132, 0.2)',
'rgba(54, 162, 235, 0.2)',
'rgba(255, 206, 86, 0.2)',
'rgba(75, 192, 192, 0.2)',
'rgba(153, 102, 255, 0.2)',
'rgba(255, 159, 64, 0.2)',
],
borderColor: [
'rgba(255, 99, 132, 1)',
'rgba(54, 162, 235, 1)',
'rgba(255, 206, 86, 1)',
'rgba(75, 192, 192, 1)',
'rgba(153, 102, 255, 1)',
'rgba(255, 159, 64, 1)',
],
borderWidth: 1,
},
],
});
export const sameData1 = {
labels: [
'Jan',
'Feb',
'Mar',
'Apr',
'Mei',
'Jun',
'Jul',
'Aug',
'Sep',
'Oct',
'Nov',
'Dec',
],
datasets: [
{
label: 'My First dataset',
backgroundColor: 'rgba(75,192,192,0.4)',
data: [33, 53, 85, 41, 44, 65, 61, 47, 52, 53, 62, 82],
},
{
label: 'My Second dataset',
backgroundColor: '#742774',
data: [33, 25, 35, 51, 54, 76, 65, 40, 42, 39, 51, 55],
},
],
};
export const sameData2 = {
labels: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
datasets: [
{
label: 'My First dataset',
backgroundColor: 'rgba(75,192,192,0.4)',
data: [42, 13, 45, 29, 44, 25, 27],
},
{
label: 'My Second dataset',
backgroundColor: '#742774',
data: [33, 25, 35, 44, 50, 40, 48],
},
],
};
export const decimationOptions = {
// Turn off animations and data parsing for performance
animation: false,
parsing: false,
interaction: {
mode: 'nearest',
axis: 'x',
intersect: false,
},
plugins: {
decimation: {
enabled: true,
algorithm: 'lttb',
samples: 500,
},
},
scales: {
x: {
type: 'time',
ticks: {
source: 'auto',
// Disabled rotation for performance
maxRotation: 0,
autoSkip: true,
},
},
},
};
export const getDecimationData = () => {
const start = Date.now();
const data = Array.from({ length: 100000 }, (_, i) => ({
x: start + i * 30000,
y: faker.datatype.number({ min: 0, max: Math.random() < 0.001 ? 100 : 20 }),
}));
return {
datasets: [
{
borderColor: colorRed,
borderWidth: 1,
data,
label: 'Large Dataset',
radius: 0,
},
],
};
};