ooodev.format.inner.direct.chart2.chart.area.hatch module

class ooodev.format.inner.direct.chart2.chart.area.hatch.Hatch(chart_doc, *, style=HatchStyle.SINGLE, color=0, space=0, angle=0, bg_color=-1)[source]

Bases: StyleMulti

Class for Chart Area Fill Hatch.

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. Default 0.

  • space (float, UnitT, optional) – Specifies the space between the lines in the hatch (in mm units) or Class UnitT. Default 0.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

copy()[source]
copy(**kwargs)
copy(**kwargs)

Copy the current instance.

Returns:

The copied instance.

Return type:

Hatch

classmethod from_preset(chart_doc, preset)[source]
classmethod from_preset(chart_doc, preset, **kwargs)
classmethod from_preset(chart_doc, preset, **kwargs)

Gets an instance from a preset.

Parameters:
  • chart_doc (XChartDocument) – Chart document.

  • preset (PresetHatchKind) – Preset.

Returns:

Instance from preset.

Return type:

Hatch

property prop_angle: Angle

Gets/Sets the angle.

Return type:

Angle

property prop_bg_color: Color

Gets/Sets the background color.

Return type:

NewType()(Color, int)

property prop_color: Color

Gets/Sets the color.

Return type:

NewType()(Color, int)

property prop_format_kind: FormatKind

Gets the kind of style

Return type:

FormatKind

property prop_hatch_name: str

Gets Hatch Name.

Return type:

str

property prop_space: UnitMM

Gets/Sets the space.

Return type:

UnitMM

property prop_style: HatchStyle

Gets/Sets the style.

Return type:

HatchStyle