Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4773e0 commit 4ab2610Copy full SHA for 4ab2610
1 file changed
lib/matplotlib/spines.py
@@ -250,14 +250,12 @@ def get_spine_transform(self):
250
251
if what == 'data':
252
# special case data based spine locations
253
+ data_xform = self.axes.transScale + \
254
+ (how+self.axes.transLimits + self.axes.transAxes)
255
if self.spine_type in ['left','right']:
- data_xform = self.axes.transScale + \
- (how+self.axes.transLimits + self.axes.transAxes)
256
result = mtransforms.blended_transform_factory(
257
data_xform,self.axes.transData)
258
elif self.spine_type in ['top','bottom']:
259
260
261
262
self.axes.transData,data_xform)
263
else:
0 commit comments