From 4eafda5dfb8b50fca06d462edb29bc197374c121 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Fri, 19 Jun 2026 11:33:45 +0200 Subject: [PATCH] fix(chart): wrap long criterion labels to fit the canvas Labels rendered as single-line SVG text and clipped at the canvas edge (and in the PNG export). Word-wrap each label to the room available on its side, stacking lines away from the chart. --- src/components/RadarChart.vue | 87 +++++++++++++++++++++++++++++++---- 1 file changed, 77 insertions(+), 10 deletions(-) diff --git a/src/components/RadarChart.vue b/src/components/RadarChart.vue index a3d32f2..10a2df6 100644 --- a/src/components/RadarChart.vue +++ b/src/components/RadarChart.vue @@ -1,5 +1,5 @@