Skip to content

Commit e5ba5c4

Browse files
committed
Add 2-12 metric over seasons bar charts
1 parent 7481ec8 commit e5ba5c4

File tree

24 files changed

+423
-4
lines changed

24 files changed

+423
-4
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
import { addBarChart } from '../add-chart.js'
2+
(async function () {
3+
const data = [
4+
{ label: 'Premiers élans (1) 1994-96', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
5+
{ label: 'Tableaux (2) 1996', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
6+
{ label: 'Vivace (3) 1997', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
7+
{ label: 'Rêves (4) 1997', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
8+
{ label: 'Espaces de vie (5) 1997-98', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
9+
{ label: 'Sur le chemin (6) 1998', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
10+
{ label: 'Croire (7) 1998', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
11+
{ label: 'Reflets perdus (8) 1998', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
12+
{ label: 'Souffles (9) 1998', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
13+
{ label: 'Pensées (10) 1998-99', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
14+
{ label: 'Perceptible (11) 1999', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
15+
{ label: 'Tempo piano (12) 1999', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
16+
{ label: 'Divina (13) 1999', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
17+
{ label: 'Au long cours (14) 1999-2001', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
18+
{ label: 'De place en place (15) 2001', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
19+
{ label: 'Plus loin (16) 2002-04', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
20+
{ label: 'Traversées (17) 2004-23', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
21+
{ label: 'Retour aux sources (18) 2023-24', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
22+
{ label: 'Destination bonheur (19) 2024', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
23+
{ label: 'Le temps qui nous reste (20) 2024', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
24+
{ label: 'C\'est vivre qui compte (21) 2024', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
25+
{ label: 'Au temps le dire (22) 2024', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
26+
{ label: 'Jamais trop (23) 2024', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
27+
{ label: 'Les mots respirent (24) 2024-25', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
28+
{ label: 'Coeur et âme (25) 2025', value: 1, color: 'rgba(72, 149, 239, 0.5)' },
29+
{ label: 'Chemins non balisés (26) 2025', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
30+
{ label: 'D\'un rêve à l\'autre (27) 2025', value: 1, color: 'rgba(72, 149, 239, 0.5)' },
31+
];
32+
addBarChart('poems-metric1Bar', ['Poèmes au fil des saisons'], [data], {scales: { y: { ticks: { stepSize: 1 } } }});
33+
})();
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
import { addBarChart } from '../add-chart.js'
2+
(async function () {
3+
const data = [
4+
{ label: 'Premiers élans (1) 1994-96', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
5+
{ label: 'Tableaux (2) 1996', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
6+
{ label: 'Vivace (3) 1997', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
7+
{ label: 'Rêves (4) 1997', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
8+
{ label: 'Espaces de vie (5) 1997-98', value: 1, color: 'rgba(72, 149, 239, 0.5)' },
9+
{ label: 'Sur le chemin (6) 1998', value: 5, color: 'rgba(72, 149, 239, 0.5)' },
10+
{ label: 'Croire (7) 1998', value: 3, color: 'rgba(72, 149, 239, 0.5)' },
11+
{ label: 'Reflets perdus (8) 1998', value: 2, color: 'rgba(72, 149, 239, 0.5)' },
12+
{ label: 'Souffles (9) 1998', value: 2, color: 'rgba(72, 149, 239, 0.5)' },
13+
{ label: 'Pensées (10) 1998-99', value: 2, color: 'rgba(72, 149, 239, 0.5)' },
14+
{ label: 'Perceptible (11) 1999', value: 1, color: 'rgba(72, 149, 239, 0.5)' },
15+
{ label: 'Tempo piano (12) 1999', value: 2, color: 'rgba(72, 149, 239, 0.5)' },
16+
{ label: 'Divina (13) 1999', value: 2, color: 'rgba(72, 149, 239, 0.5)' },
17+
{ label: 'Au long cours (14) 1999-2001', value: 2, color: 'rgba(72, 149, 239, 0.5)' },
18+
{ label: 'De place en place (15) 2001', value: 6, color: 'rgba(72, 149, 239, 0.5)' },
19+
{ label: 'Plus loin (16) 2002-04', value: 2, color: 'rgba(72, 149, 239, 0.5)' },
20+
{ label: 'Traversées (17) 2004-23', value: 3, color: 'rgba(72, 149, 239, 0.5)' },
21+
{ label: 'Retour aux sources (18) 2023-24', value: 1, color: 'rgba(72, 149, 239, 0.5)' },
22+
{ label: 'Destination bonheur (19) 2024', value: 1, color: 'rgba(72, 149, 239, 0.5)' },
23+
{ label: 'Le temps qui nous reste (20) 2024', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
24+
{ label: 'C\'est vivre qui compte (21) 2024', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
25+
{ label: 'Au temps le dire (22) 2024', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
26+
{ label: 'Jamais trop (23) 2024', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
27+
{ label: 'Les mots respirent (24) 2024-25', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
28+
{ label: 'Coeur et âme (25) 2025', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
29+
{ label: 'Chemins non balisés (26) 2025', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
30+
{ label: 'D\'un rêve à l\'autre (27) 2025', value: 1, color: 'rgba(72, 149, 239, 0.5)' },
31+
];
32+
addBarChart('poems-metric10Bar', ['Poèmes au fil des saisons'], [data], {scales: { y: { ticks: { stepSize: 1 } } }});
33+
})();
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
import { addBarChart } from '../add-chart.js'
2+
(async function () {
3+
const data = [
4+
{ label: 'Premiers élans (1) 1994-96', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
5+
{ label: 'Tableaux (2) 1996', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
6+
{ label: 'Vivace (3) 1997', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
7+
{ label: 'Rêves (4) 1997', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
8+
{ label: 'Espaces de vie (5) 1997-98', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
9+
{ label: 'Sur le chemin (6) 1998', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
10+
{ label: 'Croire (7) 1998', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
11+
{ label: 'Reflets perdus (8) 1998', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
12+
{ label: 'Souffles (9) 1998', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
13+
{ label: 'Pensées (10) 1998-99', value: 5, color: 'rgba(72, 149, 239, 0.5)' },
14+
{ label: 'Perceptible (11) 1999', value: 3, color: 'rgba(72, 149, 239, 0.5)' },
15+
{ label: 'Tempo piano (12) 1999', value: 4, color: 'rgba(72, 149, 239, 0.5)' },
16+
{ label: 'Divina (13) 1999', value: 1, color: 'rgba(72, 149, 239, 0.5)' },
17+
{ label: 'Au long cours (14) 1999-2001', value: 2, color: 'rgba(72, 149, 239, 0.5)' },
18+
{ label: 'De place en place (15) 2001', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
19+
{ label: 'Plus loin (16) 2002-04', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
20+
{ label: 'Traversées (17) 2004-23', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
21+
{ label: 'Retour aux sources (18) 2023-24', value: 1, color: 'rgba(72, 149, 239, 0.5)' },
22+
{ label: 'Destination bonheur (19) 2024', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
23+
{ label: 'Le temps qui nous reste (20) 2024', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
24+
{ label: 'C\'est vivre qui compte (21) 2024', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
25+
{ label: 'Au temps le dire (22) 2024', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
26+
{ label: 'Jamais trop (23) 2024', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
27+
{ label: 'Les mots respirent (24) 2024-25', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
28+
{ label: 'Coeur et âme (25) 2025', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
29+
{ label: 'Chemins non balisés (26) 2025', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
30+
{ label: 'D\'un rêve à l\'autre (27) 2025', value: 1, color: 'rgba(72, 149, 239, 0.5)' },
31+
];
32+
addBarChart('poems-metric11Bar', ['Poèmes au fil des saisons'], [data], {scales: { y: { ticks: { stepSize: 1 } } }});
33+
})();
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
import { addBarChart } from '../add-chart.js'
2+
(async function () {
3+
const data = [
4+
{ label: 'Premiers élans (1) 1994-96', value: 29, color: 'rgba(72, 149, 239, 0.5)' },
5+
{ label: 'Tableaux (2) 1996', value: 24, color: 'rgba(72, 149, 239, 0.5)' },
6+
{ label: 'Vivace (3) 1997', value: 6, color: 'rgba(72, 149, 239, 0.5)' },
7+
{ label: 'Rêves (4) 1997', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
8+
{ label: 'Espaces de vie (5) 1997-98', value: 3, color: 'rgba(72, 149, 239, 0.5)' },
9+
{ label: 'Sur le chemin (6) 1998', value: 6, color: 'rgba(72, 149, 239, 0.5)' },
10+
{ label: 'Croire (7) 1998', value: 13, color: 'rgba(72, 149, 239, 0.5)' },
11+
{ label: 'Reflets perdus (8) 1998', value: 6, color: 'rgba(72, 149, 239, 0.5)' },
12+
{ label: 'Souffles (9) 1998', value: 15, color: 'rgba(72, 149, 239, 0.5)' },
13+
{ label: 'Pensées (10) 1998-99', value: 7, color: 'rgba(72, 149, 239, 0.5)' },
14+
{ label: 'Perceptible (11) 1999', value: 7, color: 'rgba(72, 149, 239, 0.5)' },
15+
{ label: 'Tempo piano (12) 1999', value: 16, color: 'rgba(72, 149, 239, 0.5)' },
16+
{ label: 'Divina (13) 1999', value: 18, color: 'rgba(72, 149, 239, 0.5)' },
17+
{ label: 'Au long cours (14) 1999-2001', value: 10, color: 'rgba(72, 149, 239, 0.5)' },
18+
{ label: 'De place en place (15) 2001', value: 11, color: 'rgba(72, 149, 239, 0.5)' },
19+
{ label: 'Plus loin (16) 2002-04', value: 12, color: 'rgba(72, 149, 239, 0.5)' },
20+
{ label: 'Traversées (17) 2004-23', value: 3, color: 'rgba(72, 149, 239, 0.5)' },
21+
{ label: 'Retour aux sources (18) 2023-24', value: 6, color: 'rgba(72, 149, 239, 0.5)' },
22+
{ label: 'Destination bonheur (19) 2024', value: 7, color: 'rgba(72, 149, 239, 0.5)' },
23+
{ label: 'Le temps qui nous reste (20) 2024', value: 4, color: 'rgba(72, 149, 239, 0.5)' },
24+
{ label: 'C\'est vivre qui compte (21) 2024', value: 7, color: 'rgba(72, 149, 239, 0.5)' },
25+
{ label: 'Au temps le dire (22) 2024', value: 5, color: 'rgba(72, 149, 239, 0.5)' },
26+
{ label: 'Jamais trop (23) 2024', value: 5, color: 'rgba(72, 149, 239, 0.5)' },
27+
{ label: 'Les mots respirent (24) 2024-25', value: 2, color: 'rgba(72, 149, 239, 0.5)' },
28+
{ label: 'Coeur et âme (25) 2025', value: 3, color: 'rgba(72, 149, 239, 0.5)' },
29+
{ label: 'Chemins non balisés (26) 2025', value: 6, color: 'rgba(72, 149, 239, 0.5)' },
30+
{ label: 'D\'un rêve à l\'autre (27) 2025', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
31+
];
32+
addBarChart('poems-metric12Bar', ['Poèmes au fil des saisons'], [data], {scales: { y: { ticks: { stepSize: 1 } } }});
33+
})();
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
import { addBarChart } from '../add-chart.js'
2+
(async function () {
3+
const data = [
4+
{ label: 'Premiers élans (1) 1994-96', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
5+
{ label: 'Tableaux (2) 1996', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
6+
{ label: 'Vivace (3) 1997', value: 2, color: 'rgba(72, 149, 239, 0.5)' },
7+
{ label: 'Rêves (4) 1997', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
8+
{ label: 'Espaces de vie (5) 1997-98', value: 1, color: 'rgba(72, 149, 239, 0.5)' },
9+
{ label: 'Sur le chemin (6) 1998', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
10+
{ label: 'Croire (7) 1998', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
11+
{ label: 'Reflets perdus (8) 1998', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
12+
{ label: 'Souffles (9) 1998', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
13+
{ label: 'Pensées (10) 1998-99', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
14+
{ label: 'Perceptible (11) 1999', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
15+
{ label: 'Tempo piano (12) 1999', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
16+
{ label: 'Divina (13) 1999', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
17+
{ label: 'Au long cours (14) 1999-2001', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
18+
{ label: 'De place en place (15) 2001', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
19+
{ label: 'Plus loin (16) 2002-04', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
20+
{ label: 'Traversées (17) 2004-23', value: 1, color: 'rgba(72, 149, 239, 0.5)' },
21+
{ label: 'Retour aux sources (18) 2023-24', value: 1, color: 'rgba(72, 149, 239, 0.5)' },
22+
{ label: 'Destination bonheur (19) 2024', value: 2, color: 'rgba(72, 149, 239, 0.5)' },
23+
{ label: 'Le temps qui nous reste (20) 2024', value: 2, color: 'rgba(72, 149, 239, 0.5)' },
24+
{ label: 'C\'est vivre qui compte (21) 2024', value: 1, color: 'rgba(72, 149, 239, 0.5)' },
25+
{ label: 'Au temps le dire (22) 2024', value: 2, color: 'rgba(72, 149, 239, 0.5)' },
26+
{ label: 'Jamais trop (23) 2024', value: 2, color: 'rgba(72, 149, 239, 0.5)' },
27+
{ label: 'Les mots respirent (24) 2024-25', value: 2, color: 'rgba(72, 149, 239, 0.5)' },
28+
{ label: 'Coeur et âme (25) 2025', value: 4, color: 'rgba(72, 149, 239, 0.5)' },
29+
{ label: 'Chemins non balisés (26) 2025', value: 4, color: 'rgba(72, 149, 239, 0.5)' },
30+
{ label: 'D\'un rêve à l\'autre (27) 2025', value: 3, color: 'rgba(72, 149, 239, 0.5)' },
31+
];
32+
addBarChart('poems-metric2Bar', ['Poèmes au fil des saisons'], [data], {scales: { y: { ticks: { stepSize: 1 } } }});
33+
})();
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
import { addBarChart } from '../add-chart.js'
2+
(async function () {
3+
const data = [
4+
{ label: 'Premiers élans (1) 1994-96', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
5+
{ label: 'Tableaux (2) 1996', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
6+
{ label: 'Vivace (3) 1997', value: 2, color: 'rgba(72, 149, 239, 0.5)' },
7+
{ label: 'Rêves (4) 1997', value: 1, color: 'rgba(72, 149, 239, 0.5)' },
8+
{ label: 'Espaces de vie (5) 1997-98', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
9+
{ label: 'Sur le chemin (6) 1998', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
10+
{ label: 'Croire (7) 1998', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
11+
{ label: 'Reflets perdus (8) 1998', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
12+
{ label: 'Souffles (9) 1998', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
13+
{ label: 'Pensées (10) 1998-99', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
14+
{ label: 'Perceptible (11) 1999', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
15+
{ label: 'Tempo piano (12) 1999', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
16+
{ label: 'Divina (13) 1999', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
17+
{ label: 'Au long cours (14) 1999-2001', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
18+
{ label: 'De place en place (15) 2001', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
19+
{ label: 'Plus loin (16) 2002-04', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
20+
{ label: 'Traversées (17) 2004-23', value: 1, color: 'rgba(72, 149, 239, 0.5)' },
21+
{ label: 'Retour aux sources (18) 2023-24', value: 2, color: 'rgba(72, 149, 239, 0.5)' },
22+
{ label: 'Destination bonheur (19) 2024', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
23+
{ label: 'Le temps qui nous reste (20) 2024', value: 1, color: 'rgba(72, 149, 239, 0.5)' },
24+
{ label: 'C\'est vivre qui compte (21) 2024', value: 1, color: 'rgba(72, 149, 239, 0.5)' },
25+
{ label: 'Au temps le dire (22) 2024', value: 4, color: 'rgba(72, 149, 239, 0.5)' },
26+
{ label: 'Jamais trop (23) 2024', value: 2, color: 'rgba(72, 149, 239, 0.5)' },
27+
{ label: 'Les mots respirent (24) 2024-25', value: 5, color: 'rgba(72, 149, 239, 0.5)' },
28+
{ label: 'Coeur et âme (25) 2025', value: 4, color: 'rgba(72, 149, 239, 0.5)' },
29+
{ label: 'Chemins non balisés (26) 2025', value: 4, color: 'rgba(72, 149, 239, 0.5)' },
30+
{ label: 'D\'un rêve à l\'autre (27) 2025', value: 7, color: 'rgba(72, 149, 239, 0.5)' },
31+
];
32+
addBarChart('poems-metric3Bar', ['Poèmes au fil des saisons'], [data], {scales: { y: { ticks: { stepSize: 1 } } }});
33+
})();
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
import { addBarChart } from '../add-chart.js'
2+
(async function () {
3+
const data = [
4+
{ label: 'Premiers élans (1) 1994-96', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
5+
{ label: 'Tableaux (2) 1996', value: 5, color: 'rgba(72, 149, 239, 0.5)' },
6+
{ label: 'Vivace (3) 1997', value: 2, color: 'rgba(72, 149, 239, 0.5)' },
7+
{ label: 'Rêves (4) 1997', value: 2, color: 'rgba(72, 149, 239, 0.5)' },
8+
{ label: 'Espaces de vie (5) 1997-98', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
9+
{ label: 'Sur le chemin (6) 1998', value: 1, color: 'rgba(72, 149, 239, 0.5)' },
10+
{ label: 'Croire (7) 1998', value: 2, color: 'rgba(72, 149, 239, 0.5)' },
11+
{ label: 'Reflets perdus (8) 1998', value: 1, color: 'rgba(72, 149, 239, 0.5)' },
12+
{ label: 'Souffles (9) 1998', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
13+
{ label: 'Pensées (10) 1998-99', value: 1, color: 'rgba(72, 149, 239, 0.5)' },
14+
{ label: 'Perceptible (11) 1999', value: 2, color: 'rgba(72, 149, 239, 0.5)' },
15+
{ label: 'Tempo piano (12) 1999', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
16+
{ label: 'Divina (13) 1999', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
17+
{ label: 'Au long cours (14) 1999-2001', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
18+
{ label: 'De place en place (15) 2001', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
19+
{ label: 'Plus loin (16) 2002-04', value: 0, color: 'rgba(72, 149, 239, 0.5)' },
20+
{ label: 'Traversées (17) 2004-23', value: 1, color: 'rgba(72, 149, 239, 0.5)' },
21+
{ label: 'Retour aux sources (18) 2023-24', value: 2, color: 'rgba(72, 149, 239, 0.5)' },
22+
{ label: 'Destination bonheur (19) 2024', value: 5, color: 'rgba(72, 149, 239, 0.5)' },
23+
{ label: 'Le temps qui nous reste (20) 2024', value: 2, color: 'rgba(72, 149, 239, 0.5)' },
24+
{ label: 'C\'est vivre qui compte (21) 2024', value: 5, color: 'rgba(72, 149, 239, 0.5)' },
25+
{ label: 'Au temps le dire (22) 2024', value: 11, color: 'rgba(72, 149, 239, 0.5)' },
26+
{ label: 'Jamais trop (23) 2024', value: 7, color: 'rgba(72, 149, 239, 0.5)' },
27+
{ label: 'Les mots respirent (24) 2024-25', value: 14, color: 'rgba(72, 149, 239, 0.5)' },
28+
{ label: 'Coeur et âme (25) 2025', value: 10, color: 'rgba(72, 149, 239, 0.5)' },
29+
{ label: 'Chemins non balisés (26) 2025', value: 10, color: 'rgba(72, 149, 239, 0.5)' },
30+
{ label: 'D\'un rêve à l\'autre (27) 2025', value: 5, color: 'rgba(72, 149, 239, 0.5)' },
31+
];
32+
addBarChart('poems-metric4Bar', ['Poèmes au fil des saisons'], [data], {scales: { y: { ticks: { stepSize: 1 } } }});
33+
})();

0 commit comments

Comments
 (0)