We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce5f5b6 commit 6178d12Copy full SHA for 6178d12
src/plotting.jl
@@ -563,6 +563,7 @@ function plot_polars(
563
throw(ArgumentError("Mismatch in number of solvers ($(length(solver_list))), " *
564
"cases ($total_cases), and labels ($(length(label_list)))"))
565
end
566
+ main_title = replace(title, " " => "_")
567
568
# Generate polar data
569
polar_data_list = []
@@ -763,7 +764,7 @@ function plot_polars(
763
764
765
# Save and show plot
766
if is_save && !isnothing(save_path)
- save_plot(fig, save_path, title, data_type=data_type)
767
+ save_plot(fig, save_path, main_title, data_type=data_type)
768
769
770
if is_show
0 commit comments