Cropped y-axis label

ROOT Version: 6.32.04
Platform: WSL2 Ubuntu

Hello! I want to prevent the y-axis label from being cropped. How can I do this?

Thanks in advance! Cheers.

Depending on where/how you are drawing that, try adding this to your macro (before drawing the histogram):

gPad->SetLeftMargin(0.1);

(play around with the number, keeping it under 0.2 in general, but can be between 0 and 1), or

c->SetLeftMargin(0.1);

where c is a pointer to your canvas (so use the appropriate name for your own macro).

1 Like

Works, thank you!

c->Divide(2,1);
c->cd(1)->SetLeftMargin(0.15);
c->cd(2)->SetLeftMargin(0.15);