Change histogram scaling to exponent

Simply put I have something like this:
2

And I want to force the axis into this:
1

Because as you can see, i would like to see the point at the very bottom as well. I have also tried a couple of things including SetMaxDigits, but did not do what I want.

Thanks!

Try something like this:

if (gPad) gPad->SetLogy(0); // make sure it's "linear"
your_histo->Draw();
your_histo->SetMinimum(1.);
gPad->SetLogy(1);

Thanks.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.