我使用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的底部空间。 如果图表形状为正方形或五边形,则底部空间可以。
我看到了这个答案。 How to remove bottom space in a pie chart?
但是setExtraOffsets无法正常工作。
如何删除该空间?