58
58
59
59
class _ShapeItem (dict ):
60
60
def __init__ (
61
- self , x , y , shape , color , fill , overlay , linestyle , linewidth , gapcolor
61
+ self , x , y , shape , color , fill , overlay , linewidth , dashpattern , gapcolor
62
62
):
63
63
super (_ShapeItem , self ).__init__ ()
64
64
@@ -84,8 +84,8 @@ def __init__(
84
84
"fill" : "hatch" if fill else None ,
85
85
"x" : x ,
86
86
"y" : y ,
87
- "linestyle" : linestyle ,
88
87
"linewidth" : linewidth ,
88
+ "dashpattern" : dashpattern ,
89
89
"gapcolor" : gapcolor ,
90
90
}
91
91
)
@@ -99,8 +99,8 @@ def __init__(
99
99
text ,
100
100
color ,
101
101
symbol ,
102
- linestyle ,
103
102
linewidth ,
103
+ dashpattern ,
104
104
constraint ,
105
105
yaxis ,
106
106
font ,
@@ -124,8 +124,8 @@ def __init__(
124
124
"color" : colors .rgba (color ),
125
125
"constraint" : constraint if isConstraint else None ,
126
126
"symbol" : symbol ,
127
- "linestyle" : linestyle ,
128
127
"linewidth" : linewidth ,
128
+ "dashpattern" : dashpattern ,
129
129
"yaxis" : yaxis ,
130
130
"font" : font ,
131
131
"bgcolor" : bgcolor ,
@@ -575,7 +575,7 @@ def _renderItems(self, overlay=False):
575
575
)
576
576
577
577
# Draw the stroke
578
- if item ["linestyle " ] not in ( "" , " " , None ) :
578
+ if item ["dashpattern " ] is not None :
579
579
if item ["shape" ] != "polylines" :
580
580
# close the polyline
581
581
points = numpy .append (
@@ -585,10 +585,10 @@ def _renderItems(self, overlay=False):
585
585
lines = glutils .GLLines2D (
586
586
points [:, 0 ],
587
587
points [:, 1 ],
588
- style = item ["linestyle" ],
589
588
color = item ["color" ],
590
589
gapColor = item ["gapcolor" ],
591
590
width = item ["linewidth" ],
591
+ dashPattern = item ["dashpattern" ],
592
592
)
593
593
context .matrix = self .matScreenProj
594
594
lines .render (context )
@@ -636,9 +636,9 @@ def _renderItems(self, overlay=False):
636
636
lines = glutils .GLLines2D (
637
637
(0 , width ),
638
638
(pixelPos [1 ], pixelPos [1 ]),
639
- style = item ["linestyle" ],
640
639
color = color ,
641
640
width = item ["linewidth" ],
641
+ dashPattern = item ["dashpattern" ],
642
642
)
643
643
context .matrix = self .matScreenProj
644
644
lines .render (context )
@@ -669,9 +669,9 @@ def _renderItems(self, overlay=False):
669
669
lines = glutils .GLLines2D (
670
670
(pixelPos [0 ], pixelPos [0 ]),
671
671
(0 , height ),
672
- style = item ["linestyle" ],
673
672
color = color ,
674
673
width = item ["linewidth" ],
674
+ dashPattern = item ["dashpattern" ],
675
675
)
676
676
context .matrix = self .matScreenProj
677
677
lines .render (context )
@@ -859,6 +859,22 @@ def _castArrayTo(v):
859
859
else :
860
860
raise ValueError ("Unsupported data type" )
861
861
862
+ _DASH_PATTERNS = { # Convert from linestyle to dash pattern
863
+ "" : None ,
864
+ " " : None ,
865
+ "-" : (),
866
+ "--" : (3.7 , 1.6 , 3.7 , 1.6 ),
867
+ "-." : (6.4 , 1.6 , 1 , 1.6 ),
868
+ ":" : (1 , 1.65 , 1 , 1.65 ),
869
+ None : None ,
870
+ }
871
+
872
+ def _lineStyleToDashPattern (
873
+ self , style : str | None
874
+ ) -> tuple [float , float , float , float ] | tuple [()] | None :
875
+ """Convert a linestyle to its corresponding dash pattern"""
876
+ return self ._DASH_PATTERNS [style ]
877
+
862
878
def addCurve (
863
879
self ,
864
880
x ,
@@ -977,16 +993,17 @@ def addCurve(
977
993
fillColor = None
978
994
if fill is True :
979
995
fillColor = color
996
+
980
997
curve = glutils .GLPlotCurve2D (
981
998
x ,
982
999
y ,
983
1000
colorArray ,
984
1001
xError = xerror ,
985
1002
yError = yerror ,
986
- lineStyle = linestyle ,
987
1003
lineColor = color ,
988
1004
lineGapColor = gapcolor ,
989
1005
lineWidth = linewidth ,
1006
+ lineDashPattern = self ._lineStyleToDashPattern (linestyle ),
990
1007
marker = symbol ,
991
1008
markerColor = color ,
992
1009
markerSize = symbolsize ,
@@ -1091,8 +1108,9 @@ def addShape(
1091
1108
if self ._plotFrame .yAxis .isLog and y .min () <= 0.0 :
1092
1109
raise RuntimeError ("Cannot add item with Y <= 0 with Y axis log scale" )
1093
1110
1111
+ dashpattern = self ._lineStyleToDashPattern (linestyle )
1094
1112
return _ShapeItem (
1095
- x , y , shape , color , fill , overlay , linestyle , linewidth , gapcolor
1113
+ x , y , shape , color , fill , overlay , linewidth , dashpattern , gapcolor
1096
1114
)
1097
1115
1098
1116
def addMarker (
@@ -1110,14 +1128,15 @@ def addMarker(
1110
1128
bgcolor : RGBAColorType | None ,
1111
1129
):
1112
1130
font = qt .QApplication .instance ().font () if font is None else font
1131
+ dashpattern = self ._lineStyleToDashPattern (linestyle )
1113
1132
return _MarkerItem (
1114
1133
x ,
1115
1134
y ,
1116
1135
text ,
1117
1136
color ,
1118
1137
symbol ,
1119
- linestyle ,
1120
1138
linewidth ,
1139
+ dashpattern ,
1121
1140
constraint ,
1122
1141
yaxis ,
1123
1142
font ,
@@ -1209,7 +1228,7 @@ def __pickCurves(self, item, x, y):
1209
1228
qtDpi = self .getDotsPerInch () / self .getDevicePixelRatio ()
1210
1229
size = item .markerSize / 72.0 * qtDpi
1211
1230
offset = max (size / 2.0 , offset )
1212
- if item .lineStyle is not None :
1231
+ if item .lineDashPattern is not None :
1213
1232
# Convert line width from points to qt pixels
1214
1233
qtDpi = self .getDotsPerInch () / self .getDevicePixelRatio ()
1215
1234
lineWidth = item .lineWidth / 72.0 * qtDpi
0 commit comments