bokeh.models.grids¶
A guide renderer for displaying grid lines on Bokeh plots.
-
class
Grid
(**kwargs)[source]¶ Bases:
bokeh.models.renderers.GuideRenderer
Display horizontal or vertical grid lines at locations given by a supplied
Ticker
.-
band_hatch_extra
¶ property type:
Dict
(String
,Instance
(Texture
) )The hatch extra of alternating bands between Grid lines.
-
band_hatch_pattern
¶ property type:
String
The hatch pattern of alternating bands between Grid lines.
-
bounds
¶ property type:
Either
(Auto
,Tuple
(Float
,Float
) )Bounds for the rendered grid lines. By default, a grid will look for a corresponding axis to ask for bounds. If one cannot be found, the grid will span the entire visible range.
-
dimension
¶ property type:
Int
Which dimension the Axis Grid lines will intersect. The x-axis is dimension 0 (vertical Grid lines) and the y-axis is dimension 1 (horizontal Grid lines).
-
grid_line_dash
¶ property type:
DashPattern
The line dash of the Grid lines.
-
minor_grid_line_dash
¶ property type:
DashPattern
The line dash of the minor Grid lines.
-
ticker
¶ property type:
Instance
(Ticker
)The Ticker to use for computing locations for the Grid lines.
-