I am using MPAndroidChart library. Anybody has this problem? When I put the labels in BOTTOM position, these are cut.
Thank you
Set wrap content support only Legends postion when legend position is BelowChartLeft, BelowChartRight, BelowChartCenter
Legend legend = pieChart.getLegend();
legend.setPosition(Legend.LegendPosition.BELOW_CHART_LEFT);
legend.setWordWrapEnabled(true);
After this set dataset
pieChart.setData(pieData)
it will work fine