【MPAndroidChart】如何删除雷达图的底部空间?

时间:2019-12-09 08:54:03

标签: android kotlin mpandroidchart

我使用MPAndroidChart。

https://github.com/PhilJay/MPAndroidChart

我将RadarChart添加到布局文件中。

        <com.github.mikephil.charting.charts.RadarChart
            android:id="@+id/radarChart"
            android:layout_width="150dp"
            android:layout_height="150dp"
            android:layout_marginTop="4dp"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toBottomOf="@+id/nameLabel" />

但是,如果图表为三角形,则无法删除RadarChart的底部空间。 如果图表形状为正方形或五边形,则底部空间可以。

可以在布局检查器中看到此图片。 enter image description here

我看到了这个答案。 How to remove bottom space in a pie chart?

但是setExtraOffsets无法正常工作。

如何删除该空间?

0 个答案:

没有答案