ooodev.format.inner.direct.chart2.title.area.hatch module
- class ooodev.format.inner.direct.chart2.title.area.hatch.Hatch(chart_doc, *, style=HatchStyle.SINGLE, color=0, space=0, angle=0, bg_color=-1)[source]
Bases:
Hatch
Class for Chart Title Area Fill Hatch.
See also
New in version 0.9.4.
- __init__(chart_doc, *, style=HatchStyle.SINGLE, color=0, space=0, angle=0, bg_color=-1)[source]
Constructor.
- Parameters:
chart_doc (XChartDocument) – Chart document.
style (HatchStyle, optional) – Specifies the kind of lines used to draw this hatch. Default
HatchStyle.SINGLE
.color (
Color
, optional) – Specifies the color of the hatch lines. Default0
.space (float, UnitT, optional) – Specifies the space between the lines in the hatch (in
mm
units) or Class UnitT. Default0.0
angle (Angle, int, optional) – Specifies angle of the hatch in degrees. Default to
0
.bg_color (Color, optional) – Specifies the background Color. Set this
-1
(default) for no background color.
- Return type:
None
See also