From d262e280845e075425915f6afbb3ca68e6210568 Mon Sep 17 00:00:00 2001 From: Sebastian Troitzsch Date: Wed, 1 Nov 2023 09:36:04 +0100 Subject: [PATCH] plots: Fix graph plot titles --- mesmo/plots/graph.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mesmo/plots/graph.py b/mesmo/plots/graph.py index 08b37d428..59e5bd55f 100644 --- a/mesmo/plots/graph.py +++ b/mesmo/plots/graph.py @@ -248,7 +248,7 @@ def electric_grid_node_voltage_nominal(figure: go.Figure, results: data_models.R _plot_electric_transformer_layout(figure, results, graph) _plot_electric_nodes_nominal_voltage(figure, results, graph) - title = "Electric grid asset layout" + title = "Electric grid nominal voltage" legend_title = constants.ValueLabels.ASSETS figure.update_layout( title=title, @@ -265,7 +265,7 @@ def electric_grid_node_voltage_magnitude_min(figure: go.Figure, results: data_mo _plot_electric_transformer_layout(figure, results, graph) _plot_electric_nodes_min_voltage(figure, results, graph) - title = "Electric grid asset layout" + title = "Electric grid voltage magnitude (aggregated minimum)" legend_title = constants.ValueLabels.ASSETS figure.update_layout( title=title,