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.
bottom
left
1 parent 01a4bed commit d6e3734Copy full SHA for d6e3734
lib/matplotlib/axes.py
@@ -4797,6 +4797,7 @@ def make_iterable(x):
4797
if _bottom is None:
4798
if self.get_yscale() == 'log':
4799
adjust_ylim = True
4800
+ bottom = [1e-100]
4801
else:
4802
bottom = [0]
4803
nbars = len(left)
@@ -4812,6 +4813,7 @@ def make_iterable(x):
4812
4813
if _left is None:
4814
if self.get_xscale() == 'log':
4815
adjust_xlim = True
4816
+ left = [1e-100]
4817
4818
left = [0]
4819
nbars = len(bottom)
0 commit comments