This commit is contained in:
Andrew Charlwood
2026-02-08 22:41:46 +00:00
parent 1400fe7217
commit b98ab1a5c6
9 changed files with 660 additions and 66 deletions
-2
View File
@@ -106,8 +106,6 @@ def make_chart_card():
children=[
dcc.Graph(
id="pathway-chart",
style={"flex": "1", "minHeight": "0"},
responsive=True,
config={
"displayModeBar": True,
"displaylogo": False,
+4 -2
View File
@@ -46,7 +46,8 @@ def make_trends_landing():
dcc.Graph(
id="trends-overview-chart",
config={"displayModeBar": False, "displaylogo": False},
style={"height": "500px"},
style={"height": "calc(100vh - 220px)", "minHeight": "400px"},
responsive=True,
),
]),
],
@@ -105,7 +106,8 @@ def make_trends_detail():
dcc.Graph(
id="trends-detail-chart",
config={"displayModeBar": False, "displaylogo": False},
style={"height": "500px"},
style={"height": "calc(100vh - 220px)", "minHeight": "400px"},
responsive=True,
),
]),
],