Ajout du nombre de marchés notifiés par mois de notif et par source #24

This commit is contained in:
Colin Maudry
2025-07-05 18:10:53 +02:00
parent 3db5b804e4
commit b854d77d2f
+7 -2
View File
@@ -1,6 +1,6 @@
from dash import dcc, html, register_page 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 from src.utils import lf
title = "Statistiques" title = "Statistiques"
@@ -25,7 +25,12 @@ layout = [
id="loading-1", id="loading-1",
type="default", type="default",
children=[ 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)),
]
),
], ],
), ),
], ],