From b854d77d2fb1e796fe209b1278ea677411b67463 Mon Sep 17 00:00:00 2001 From: Colin Maudry Date: Sat, 5 Jul 2025 18:10:53 +0200 Subject: [PATCH] =?UTF-8?q?Ajout=20du=20nombre=20de=20march=C3=A9s=20notif?= =?UTF-8?q?i=C3=A9s=20par=20mois=20de=20notif=20et=20par=20source=20#24?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/statistiques.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/pages/statistiques.py b/src/pages/statistiques.py index 2a72a97..289aa33 100644 --- a/src/pages/statistiques.py +++ b/src/pages/statistiques.py @@ -1,6 +1,6 @@ from dash import dcc, html, register_page -from src.figures import get_map_count_marches +from src.figures import get_barchart_sources_notification, get_map_count_marches from src.utils import lf title = "Statistiques" @@ -25,7 +25,12 @@ layout = [ id="loading-1", type="default", children=[ - html.Div(children=[dcc.Graph(figure=get_map_count_marches(lf))]), + html.Div( + children=[ + dcc.Graph(figure=get_map_count_marches(lf)), + dcc.Graph(figure=get_barchart_sources_notification(lf)), + ] + ), ], ), ],