Matrix_charts.GridlinesSourceBackground gridline configuration.
type t = {show : bool;Master visibility toggle.
*)x : bool;Vertical gridlines (at x-axis ticks).
*)y : bool;Horizontal gridlines (at y-axis ticks).
*)style : Ansi.Style.t;Major gridline style.
*)pattern : Charset.line_pattern;Gridline pattern.
*)x_step : int option;Show every nth vertical gridline. None shows all.
y_step : int option;Show every nth horizontal gridline. None shows all.
minor : int option;Minor subdivisions between major gridlines. None disables minor gridlines.
minor_style : Ansi.Style.t option;Minor gridline style. None inherits from theme.
}Hidden gridlines: show = false.
with_style s g is g with major gridline style s.
with_pattern p g is g with gridline pattern p.
with_x_step n g is g showing every nth vertical gridline. None uses automatic spacing.
with_y_step n g is g showing every nth horizontal gridline. None uses automatic spacing.
with_minor n g is g with n minor gridlines between major lines. None disables.
with_minor_style s g is g with minor gridline style s. None inherits from major style.