bokeh.models.arrow_heads¶
Models for various kinds of arrow heads that can be added to Arrow annotations.
-
class
ArrowHead
(**kwargs)[source]¶ Bases:
bokeh.models.annotations.Annotation
Base class for arrow heads.
Note
This is an abstract base class used to help organize the hierarchy of Bokeh model types. It is not useful to instantiate on its own.
-
class
NormalHead
(**kwargs)[source]¶ Bases:
bokeh.models.arrow_heads.ArrowHead
Render a closed-body arrow head.
-
fill_alpha
¶ property type:
NumberSpec
The fill alpha values for the arrow head interior.
-
line_alpha
¶ property type:
NumberSpec
The line alpha values for the arrow head outline.
-
line_dash
¶ property type:
DashPattern
The line dash values for the arrow head outline.
-
line_width
¶ property type:
NumberSpec
The line width values for the arrow head outline.
-
-
class
OpenHead
(**kwargs)[source]¶ Bases:
bokeh.models.arrow_heads.ArrowHead
Render an open-body arrow head.
-
line_alpha
¶ property type:
NumberSpec
The line alpha values for the arrow head outline.
-
line_dash
¶ property type:
DashPattern
The line dash values for the arrow head outline.
-
line_width
¶ property type:
NumberSpec
The line width values for the arrow head outline.
-
-
class
TeeHead
(**kwargs)[source]¶ Bases:
bokeh.models.arrow_heads.ArrowHead
Render a tee-style arrow head.
-
line_alpha
¶ property type:
NumberSpec
The line alpha values for the arrow head outline.
-
line_dash
¶ property type:
DashPattern
The line dash values for the arrow head outline.
-
line_width
¶ property type:
NumberSpec
The line width values for the arrow head outline.
-
-
class
VeeHead
(**kwargs)[source]¶ Bases:
bokeh.models.arrow_heads.ArrowHead
Render a vee-style arrow head.
-
fill_alpha
¶ property type:
NumberSpec
The fill alpha values for the arrow head interior.
-
line_alpha
¶ property type:
NumberSpec
The line alpha values for the arrow head outline.
-
line_dash
¶ property type:
DashPattern
The line dash values for the arrow head outline.
-
line_width
¶ property type:
NumberSpec
The line width values for the arrow head outline.
-