tbapi.core.enums.line_style

 1from enum import Enum
 2from Tickblaze.Core.Enums import LineStyle as _LineStyle
 3
 4class LineStyle(Enum):
 5    """Specifies the style of a line."""
 6
 7    Solid = 100
 8    """Solid line."""
 9
10    Dash = 101
11    """Dashed line."""
12
13    Dot = 102
14    """Dotted line."""
15
16    DashDot = 103
17    """Dash-dot line."""
18
19    DashDotDot = 104
20    """Dash-dot-dot line."""
class LineStyle(enum.Enum):
 7class LineStyle(Enum):
 8    """Specifies the style of a line."""
 9
10    Solid = 100
11    """Solid line."""
12
13    Dash = 101
14    """Dashed line."""
15
16    Dot = 102
17    """Dotted line."""
18
19    DashDot = 103
20    """Dash-dot line."""
21
22    DashDotDot = 104
23    """Dash-dot-dot line."""

Specifies the style of a line.

Solid = <LineStyle.Solid: 100>

Solid line.

Dash = <LineStyle.Dash: 101>

Dashed line.

Dot = <LineStyle.Dot: 102>

Dotted line.

DashDot = <LineStyle.DashDot: 103>

Dash-dot line.

DashDotDot = <LineStyle.DashDotDot: 104>

Dash-dot-dot line.