gpt4 book ai didi

android - 我正在使用 MPAndroidChartLibrary 并在显示图例时遇到问题

转载 作者:行者123 更新时间:2023-12-04 01:15:28 25 4
gpt4 key购买 nike

我正在使用 MPANdroidChartLibrary ,但在图表底部显示垂直图例时遇到问题。最后的传说被砍掉了。

见附图:enter image description here

由于在小型设备中进行 AM 注册后,最后一个图例被删除。我关注Answer1

3 : MpAndroidChart Piechart legends cutting issue at the bottom centerAnswer2堆栈溢出上的帖子,但对我没有任何作用。

令人惊讶的是,即使在图表周围使用 ScrollView 后,此问题也只会出现在较小的设备上,而在 6 英寸以上的大型设备上,所有图例都可以正常显示。

最佳答案

  1. 随着图例的增长添加尽可能多的偏移量。

    有两种方法可以在图表的顶部和底部添加指定的padding

    mPiecPieChart.setExtraBottomOffset(12f);//from bottom side if legends are bottom side 

    mPiecPieChart.setExtraTopOffset(12f);//if legends are on top side or change both if legend are on both sides
  2. 通过这行代码,您可以设置下一行和图例最后一个条目之间的边距!

    legend.setYOffset(50f);

    随着图例的增加,您可以增加值,并且在减少图例条目时,您也可以降低该值!

    Legend legend = chart.getLegend();
    legend.setVerticalAlignment(Legend.LegendVerticalAlignment.BOTTOM);
    legend.setHorizontalAlignment(Legend.LegendHorizontalAlignment.CENTER);
    legend.setOrientation(Legend.LegendOrientation.VERTICAL);
    legend.setDrawInside(false);
    legend.setYOffset(50f);//here value changes

关于android - 我正在使用 MPAndroidChartLibrary 并在显示图例时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63510837/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com