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.
bar
1 parent d6e3734 commit edbeedfCopy full SHA for edbeedf
lib/matplotlib/axes.py
@@ -4797,9 +4797,8 @@ 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]
+ bottom = [0]
+
4803
nbars = len(left)
4804
if len(width) == 1:
4805
width *= nbars
@@ -4813,9 +4812,8 @@ def make_iterable(x):
4813
4812
if _left is None:
4814
if self.get_xscale() == 'log':
4815
adjust_xlim = True
4816
- left = [1e-100]
4817
4818
- left = [0]
+ left = [0]
4819
nbars = len(bottom)
4820
if len(left) == 1:
4821
left *= nbars
0 commit comments