@@ -581,7 +581,7 @@ def c(func):
581581 )
582582
583583
584- @graph ("dispatch" , title = "Average daily dispatch" )
584+ @graph ("dispatch" , title = "Average daily dispatch" , is_long = True )
585585def graph_hourly_dispatch (tools ):
586586 """
587587 Generates a matrix of hourly dispatch plots for each time region
@@ -598,7 +598,7 @@ def graph_hourly_dispatch(tools):
598598 )
599599
600600
601- @graph ("curtailment" , title = "Average daily curtailment" )
601+ @graph ("curtailment" , title = "Average daily curtailment" , is_long = True )
602602def graph_hourly_curtailment (tools ):
603603 # Read dispatch.csv
604604 df = tools .get_dataframe ("dispatch.csv" )
@@ -615,6 +615,7 @@ def graph_hourly_curtailment(tools):
615615 "dispatch_per_scenario" ,
616616 title = "Average daily dispatch" ,
617617 requires_multi_scenario = True ,
618+ is_long = True ,
618619)
619620def graph_hourly_dispatch (tools ):
620621 """
@@ -634,6 +635,7 @@ def graph_hourly_dispatch(tools):
634635 "curtailment_compare_scenarios" ,
635636 title = "Average daily curtailment by scenario" ,
636637 requires_multi_scenario = True ,
638+ is_long = True ,
637639)
638640def graph_hourly_curtailment (tools ):
639641 # Read dispatch.csv
@@ -646,7 +648,11 @@ def graph_hourly_curtailment(tools):
646648 )
647649
648650
649- @graph ("total_dispatch" , title = "Total dispatched electricity" )
651+ @graph (
652+ "total_dispatch" ,
653+ title = "Total dispatched electricity" ,
654+ is_long = True ,
655+ )
650656def graph_total_dispatch (tools ):
651657 # ---------------------------------- #
652658 # total_dispatch.png #
0 commit comments