You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it the case that gr() is the only backend that support minor grids at the moment? Is backends.jl the place to look? The only attributes containing *minor* are in gr(). I tried pyplot() and pgfplots() seem to ignore minorgrid = true.
If minor grids and minor ticks were to be implemented for other backends (and, possibly, in Makie.jl), I would like to be able to control major and minor ticks separately.
In #1788 I implemented two new attributes foreground_color_tick and foreground_color_minor_tick and incorporated them in the gr() backend.
Minor and major ticks grids where only implemented some months ago for GR and GLVisualize (they share the same code for drawing segments for axes, grids, ticks, etc.) in #1596.
So #1788 cannot really be extended for the other backends, right?
Is it the case that
gr()
is the only backend that support minor grids at the moment? Isbackends.jl
the place to look? The only attributes containing*minor*
are ingr()
. I triedpyplot()
andpgfplots()
seem to ignoreminorgrid = true
.If minor grids and minor ticks were to be implemented for other backends (and, possibly, in
Makie.jl
), I would like to be able to control major and minor ticks separately.In #1788 I implemented two new attributes
foreground_color_tick
andforeground_color_minor_tick
and incorporated them in thegr()
backend.I propose to replace the
foreground_color_axis
attribute with these two attributes. (The color of the axis is determined byforeground_color_axis
.Should I extend #1788 to replace
foreground_color_axis
in the other backends?The text was updated successfully, but these errors were encountered: