diff --git a/src/backends/glvisualize.jl b/src/backends/glvisualize.jl index f9c01f29..1bdb79df 100644 --- a/src/backends/glvisualize.jl +++ b/src/backends/glvisualize.jl @@ -41,6 +41,7 @@ const _glvisualize_attr = merge_with_base_supported([ :dpi, :hover, :framestyle, + :tick_direction, ]) const _glvisualize_seriestype = [ :path, :shape, diff --git a/src/backends/gr.jl b/src/backends/gr.jl index b1680c20..fcd93547 100644 --- a/src/backends/gr.jl +++ b/src/backends/gr.jl @@ -33,6 +33,7 @@ const _gr_attr = merge_with_base_supported([ :bar_width, :arrow, :framestyle, + :tick_direction, ]) const _gr_seriestype = [ :path, :scatter, diff --git a/src/backends/plotly.jl b/src/backends/plotly.jl index 02236e04..1dd9060a 100644 --- a/src/backends/plotly.jl +++ b/src/backends/plotly.jl @@ -34,6 +34,7 @@ const _plotly_attr = merge_with_base_supported([ :bar_width, :clims, :framestyle, + :tick_direction, ]) const _plotly_seriestype = [ diff --git a/src/backends/pyplot.jl b/src/backends/pyplot.jl index 27f28e18..ea0ba6c7 100644 --- a/src/backends/pyplot.jl +++ b/src/backends/pyplot.jl @@ -34,6 +34,7 @@ const _pyplot_attr = merge_with_base_supported([ :colorbar_title, :stride, :framestyle, + :tick_direction, ]) const _pyplot_seriestype = [ :path, :steppre, :steppost, :shape,