Is their any possibility to hide all rounded items from this picture.
As per this answer
mChart.getXAxis().setDrawLabels(false);
will hide the entire X-Axis(as required for this question).
For positioning the X-Axis, following code works.
XAxis xAxis = mChart.getXAxis();
xAxis.setPosition(XAxis.XAxisPosition.BOTTOM);
Position can be set to
This helps if you are trying to hide only the particular side axis instead of hiding the entire axis.