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 76bdae4 commit 479d68fCopy full SHA for 479d68f
1 file changed
lib/matplotlib/axes/_base.py
@@ -997,8 +997,7 @@ def cla(self):
997
self.xaxis.set_minor_locator(minl)
998
else:
999
self.xaxis._set_scale('linear')
1000
- #self.viewLim.intervalx = (0, 1)
1001
- self.set_xlim(0,1)
+ self.set_xlim(0, 1)
1002
1003
if self._sharey is not None:
1004
self.yaxis.major = self._sharey.yaxis.major
@@ -1022,8 +1021,7 @@ def cla(self):
1022
1021
self.yaxis.set_minor_locator(minl)
1023
1024
self.yaxis._set_scale('linear')
1025
- #self.viewLim.intervaly = (0, 1)
1026
- self.set_ylim(0,1)
+ self.set_ylim(0, 1)
1027
1028
# update the minor locator for x and y axis based on rcParams
1029
if (rcParams['xtick.minor.visible']):
0 commit comments