Scrollable Legend mpandroidchart piechart

I implemented piechartusing mpandroid library:

enter image description here

since you can see that everything is working fine ... but I have a little problem with my legend pie chart on the right side.

The page height is low. The legend is not displayed in full.

My legend code:

Legend l = mChart.getLegend();
l.setPosition(LegendPosition.RIGHT_OF_CHART);
l.setXEntrySpace(7);
l.setYEntrySpace(5);
setContentView(mChart);

Is it possible to increase the maximum of the chart automatically so that the legend is displayed in full or at least the scroll function?

thanks in advance

Stephen

+4
source share

All Articles