From b85a360ae2d4ad90e6339a2d8a8615d6da267166 Mon Sep 17 00:00:00 2001 From: Nadav Spiegelman Date: Mon, 22 Dec 2025 18:42:17 -0500 Subject: [PATCH 1/7] Disable chart legends Not necessary/helpful when we display one variable per chart --- .../src/components/user-stats/IndexerStatsEvolutions.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/src/components/user-stats/IndexerStatsEvolutions.vue b/frontend/src/components/user-stats/IndexerStatsEvolutions.vue index ca5de0f..8dbb45f 100644 --- a/frontend/src/components/user-stats/IndexerStatsEvolutions.vue +++ b/frontend/src/components/user-stats/IndexerStatsEvolutions.vue @@ -32,6 +32,11 @@ const chartOptions = (value: keyof UserProfileScrapedVec) => { break } return { + plugins: { + legend: { + display: false, + }, + }, scales: { x: { type: 'time', From 3544460a7590207a6d7259bb9d84c820741d487b Mon Sep 17 00:00:00 2001 From: Nadav Spiegelman Date: Mon, 22 Dec 2025 18:47:18 -0500 Subject: [PATCH 2/7] Use headings --- frontend/src/assets/main.css | 1 - frontend/src/components/user-stats/IndexerStatsEvolutions.vue | 2 +- frontend/src/components/user-stats/IndexerStatsIncreases.vue | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/frontend/src/assets/main.css b/frontend/src/assets/main.css index c0d34b6..e2c86f7 100644 --- a/frontend/src/assets/main.css +++ b/frontend/src/assets/main.css @@ -16,7 +16,6 @@ width: 100%; } .title { - font-size: 1.1em; font-weight: bold; margin-bottom: 10px; } diff --git a/frontend/src/components/user-stats/IndexerStatsEvolutions.vue b/frontend/src/components/user-stats/IndexerStatsEvolutions.vue index 8dbb45f..2637a6a 100644 --- a/frontend/src/components/user-stats/IndexerStatsEvolutions.vue +++ b/frontend/src/components/user-stats/IndexerStatsEvolutions.vue @@ -1,6 +1,6 @@