Preenchimento / deslocamento do gráfico de configuração do MPAndroidChart

Estou usando o MPAndroidChart para o meu gráfico de barras e estou tendo problemas para remover o preenchimento do gráfico (veja a figura abaixo)

Minhas abordagens sobre esse problema foram:

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());

E nada funcionou até agora. Você conhece outra abordagem para esse problema?

questionAnswers(2)

yourAnswerToTheQuestion