diff --git a/src/plot_parallelcoordinates.jl b/src/plot_parallelcoordinates.jl index 116ae70b8..5f417c714 100644 --- a/src/plot_parallelcoordinates.jl +++ b/src/plot_parallelcoordinates.jl @@ -120,7 +120,7 @@ function plot_parallelcoordinates!( labelfont = "Arial", ticklabelfont = "Arial", spinevisible = true, - label_rotation = 0.0, + labelrotation = 0.0, ticklabelsize = tick_label_size, minorticks = IntervalsBetween(2), endpoints = Point2f[(x_values[i], bottom_padding), (x_values[i], y_values[i])], diff --git a/src/plot_topoplotseries.jl b/src/plot_topoplotseries.jl index 7f7c7eb9c..f920e093d 100644 --- a/src/plot_topoplotseries.jl +++ b/src/plot_topoplotseries.jl @@ -79,7 +79,7 @@ function plot_topoplotseries!( colorrange = d.colorrange, height = config.colorbar.height, flipaxis = config.colorbar.flipaxis, - label_rotation = config.colorbar.label_rotation, + labelrotation = config.colorbar.labelrotation , label = config.colorbar.label, ) else @@ -91,7 +91,7 @@ function plot_topoplotseries!( colorrange = d.colorrange, height = config.colorbar.height, flipaxis = config.colorbar.flipaxis, - label_rotation = config.colorbar.label_rotation, + labelrotation = config.colorbar.labelrotation , label = config.colorbar.label, ) end diff --git a/src/plotconfig.jl b/src/plotconfig.jl index 3c7ec3af5..f7b528201 100644 --- a/src/plotconfig.jl +++ b/src/plotconfig.jl @@ -154,7 +154,7 @@ function PlotConfig(T::Val{:topoplotseries}) colorbar = (; height = 300, # why even should i made it manually? flipaxis = true, - label_rotation = 4.7, + labelrotation = 4.7, label = "Voltage [µV]" ), visual = (; @@ -207,7 +207,7 @@ function PlotConfig(T::Val{:erpimage}) config_kwargs!( cfg; layout = (; use_colorbar = true), - colorbar = (; label = "Voltage [µV]", label_rotation = 4.7), + colorbar = (; label = "Voltage [µV]", labelrotation = 4.7), axis = (xlabel = "Time", ylabel = "Sorted trials"), visual = (; colormap = Reverse("RdBu")), )