I have a LinearLayout with the graph and a spacer below.
I have this code to style the x axis
XAxis xAxis = chart.getXAxis();
xAxis.setDrawGridLines(false);
xAxis.setPosition(XAxis.XAxisPosition.BOTTOM);
xAxis.setTextSize(15);
the problem is that the text gets clipped on the bottom as you can see in the photo
No problem with the default text size

I tried to add margins and padding but nothing changed.
I'm using 3.0.0-beta1 version
I also meet this problem, have you solved it?
No, I've tried few things, but nothing.
Maybe it's something related to the core.
@PhilJay any ideas?
Thanks for your feedback.
try call this method:
mChart.setExtraBottomOffset(5);
Thanks, problem solved!
Most helpful comment
try call this method:
mChart.setExtraBottomOffset(5);