Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只想专门更改饼图输出的图例大小。我已经尝试了所有可以为 AChartEngine 找到的方法,但没有一个只会改变图例文本的大小。我必须重写 onDraw 函数吗?如果是这样,怎么做?
要设置图例高度,请使用:
renderer.setLegendHeight(height);
您还可以让图例只占用它需要的确切空间:
renderer.setFitLegend(true);
要更改图例文本大小:
renderer.setLegendTextSize(textSize);
更改图表 renderer.setChartValuesTextSize(textSize) 的值;