Histogram: Vertical axis starting from 0

How can I force the range of the vertical axis of a histogram to start with 0, although the histogram has no 0 bin? The end of the range should still be calculated automatically.

Have you tried:

h->SetMinimum(0);

?

[quote=“couet”]Have you tried:

h->SetMinimum(0);

?[/quote]

No, but that is the solution. I probably didn’t find it because it was too easy. Thanks.