tbapi.core.enums.plot_style

 1from enum import Enum
 2from Tickblaze.Core.Enums import PlotStyle as _PlotStyle
 3
 4class PlotStyle(Enum):
 5    """Specifies the style of a plot."""
 6
 7    Histogram = 105
 8    """Histogram plot style."""
 9
10    Cross = 106
11    """Cross plot style."""
12
13    Dot = 107
14    """Dot plot style."""
15
16    Hash = 108
17    """Hash plot style."""
18
19    Line = 109
20    """Line plot style."""
21
22    Square = 110
23    """Square plot style."""
24
25    Stair = 111
26    """Stair plot style."""
27
28    TriangleDown = 112
29    """Triangle down plot style."""
30
31    TriangleLeft = 113
32    """Triangle left plot style."""
33
34    TriangleRight = 114
35    """Triangle right plot style."""
36
37    TriangleUp = 115
38    """Triangle up plot style."""
class PlotStyle(enum.Enum):
 7class PlotStyle(Enum):
 8    """Specifies the style of a plot."""
 9
10    Histogram = 105
11    """Histogram plot style."""
12
13    Cross = 106
14    """Cross plot style."""
15
16    Dot = 107
17    """Dot plot style."""
18
19    Hash = 108
20    """Hash plot style."""
21
22    Line = 109
23    """Line plot style."""
24
25    Square = 110
26    """Square plot style."""
27
28    Stair = 111
29    """Stair plot style."""
30
31    TriangleDown = 112
32    """Triangle down plot style."""
33
34    TriangleLeft = 113
35    """Triangle left plot style."""
36
37    TriangleRight = 114
38    """Triangle right plot style."""
39
40    TriangleUp = 115
41    """Triangle up plot style."""

Specifies the style of a plot.

Histogram = <PlotStyle.Histogram: 105>

Histogram plot style.

Cross = <PlotStyle.Cross: 106>

Cross plot style.

Dot = <PlotStyle.Dot: 107>

Dot plot style.

Hash = <PlotStyle.Hash: 108>

Hash plot style.

Line = <PlotStyle.Line: 109>

Line plot style.

Square = <PlotStyle.Square: 110>

Square plot style.

Stair = <PlotStyle.Stair: 111>

Stair plot style.

TriangleDown = <PlotStyle.TriangleDown: 112>

Triangle down plot style.

TriangleLeft = <PlotStyle.TriangleLeft: 113>

Triangle left plot style.

TriangleRight = <PlotStyle.TriangleRight: 114>

Triangle right plot style.

TriangleUp = <PlotStyle.TriangleUp: 115>

Triangle up plot style.