TAxis alignment

How can I access the alignment of the labels on the axises on my histograms? I would like to center all my labels on the y-axis, since the 0 overlaps with the zero from the initial value from the x axis.

You can move horizontaly the labels on the Y axis and vertically the labels on the X axis with

hist.GetYaxis()->SetLabelOffset(xoffset); //with xoffset = 0.04 for instance hist.GetXaxis()->SetLabelOffset(yoffset);
Rene