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 060ffc4 commit 90453a4Copy full SHA for 90453a4
lib/matplotlib/axes.py
@@ -904,8 +904,8 @@ def cla(self):
904
self.xaxis.set_clip_path(self.patch)
905
self.yaxis.set_clip_path(self.patch)
906
907
- self._shared_x_axes.clear()
908
- self._shared_y_axes.clear()
+ self._shared_x_axes.clean()
+ self._shared_y_axes.clean()
909
910
def clear(self):
911
'clear the axes'
@@ -6032,7 +6032,7 @@ def twinx(self):
6032
right
6033
"""
6034
6035
- ax2 = self.figure.add_axes(self.get_position(True), sharex=self,
+ ax2 = self.figure.add_axes(self.get_position(True), # sharex=self,
6036
frameon=False)
6037
ax2.yaxis.tick_right()
6038
ax2.yaxis.set_label_position('right')
0 commit comments