如何在Android剧情中为饼图添加图例?

时间:2017-07-10 13:51:31

标签: android androidplot

enter image description here

我正在使用Android Plot(http://androidplot.com/)库来绘制饼图并且饼图绘制很好但是我想要传说及其自定义如附图所示,所以请指导我在Android Plot库中做同样的事情。

1 个答案:

答案 0 :(得分:1)

饼图图例在Androidplot 1.5.0中添加,但默认情况下处于禁用状态。启用:

pieChart.legend.setVisible(true);

Configuration of the legend的工作方式与Androidplot中其他系列类型的工作方式相同。例如,您可以配置一个包含4行的列:

pie.getLegend().setTableModel(new DynamicTableModel(1, 4));

或包含4列的单行(如下所示):

pie.getLegend().setTableModel(new DynamicTableModel(4, 1));

enter image description here