本文介绍了我如何修复传奇?(MPAndroidChart)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用了 legend.setPosition(Legend.LegendPosition.RIGHT_OF_CHART_CENTER); 它有效,但我希望图例位于顶部

I used legend.setPosition(Legend.LegendPosition.RIGHT_OF_CHART_CENTER); it works, but I want that the legend was at the top

如果我使用 legend.setPosition(Legend.LegendPosition.RIGHT_OF_CHART); 图例和图形重叠

if i use legend.setPosition(Legend.LegendPosition.RIGHT_OF_CHART); the legend and the graph overlap

也许有办法改变图表的位置?

maybe there is a way to change the position of the chart?

推荐答案

我能够使用

legend.setPosition(Legend.LegendPosition.ABOVE_CHART_LEFT);
legend.setWordWrapEnabled(true);
legend.setMaxSizePercent(0.20f);

这篇关于我如何修复传奇?(MPAndroidChart)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-30 05:20