MPAndroidChart setting chart padding / offset

Estoy usando el MPAndroidChart para mi gráfico de barras y estoy luchando para eliminar el relleno del gráfico (ver foto a continuación)

Mis enfoques con respecto a este problema fueron:

chart.setDrawLegend(false);
chart.setDrawMarkerViews(false);
chart.setDrawUnitsInChart(false);
chart.setDrawValueAboveBar(false);
chart.setDrawXLabels(false);
chart.setDrawYLabels(false);
chart.setDescription("");
chart.setOffsets(0, 0, 0, 0);
chart.getTransformer().prepareMatrixValuePx(chart);
chart.getTransformer().prepareMatrixOffset(chart);
chart.getContentRect().set(0, 0, chart.getWidth(),chart.getHeight());

Y nada ha funcionado hasta ahora. ¿Conoces otro enfoque para este problema?

Respuestas a la pregunta(2)

Su respuesta a la pregunta