Skip to content

Commit e0712ea

Browse files
committed
corinne: added 2026 and events to the page
1 parent 90e222e commit e0712ea

1 file changed

Lines changed: 15 additions & 15 deletions

File tree

data/event.ts

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -23,43 +23,43 @@ const categories = {
2323
const marks = [
2424
{
2525
value: 100,
26+
scaledValue: 2026,
27+
label: '2026',
28+
},
29+
{
30+
value: 80,
2631
scaledValue: 2025,
2732
label: '2025',
2833
},
2934
{
30-
value: 80,
35+
value: 60,
3136
scaledValue: 2024,
3237
label: '2024',
3338
},
3439
{
35-
value: 60,
40+
value: 40,
3641
scaledValue: 2023,
3742
label: '2023',
3843
},
3944
{
40-
value: 40,
45+
value: 20,
4146
scaledValue: 2022,
4247
label: '2022',
4348
},
4449
{
45-
value: 20,
50+
value: 0,
4651
scaledValue: 2021,
4752
label: '2021',
4853
},
49-
{
50-
value: 0,
51-
scaledValue: 2020,
52-
label: '2020',
53-
},
5454
];
5555

5656
const valueToYear = {
57-
0: '2020',
58-
20: '2021',
59-
40: '2022',
60-
60: '2023',
61-
80: '2024',
62-
100: '2025',
57+
0: '2021',
58+
20: '2022',
59+
40: '2023',
60+
60: '2024',
61+
80: '2025',
62+
100: '2026',
6363
};
6464

6565
export { useStyles, categories, marks, valueToYear };

0 commit comments

Comments
 (0)