所以我有一个PieChart
正在使用setMaxAngle
创建类似计量器的东西。但是,我需要删除它下面的重要空白。我无法找到修改PieChart
视口的方法。那我怎么能参考白色空间呢?见下图。
我的布局如下:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.nextraq.anders.ui.dashboard.DashboardActivityFragment"
tools:showIn="@layout/dashboard_activity">
<android.support.v7.widget.CardView
style="@style/AndersMaterialTheme.Dashboard.Gadget"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RelativeLayout
android:padding="@dimen/card_margin"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/gadgetTitle"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="@string/mobiles"
android:ellipsize="end"
android:singleLine="true"
android:textAppearance="?android:attr/textAppearanceMedium" />
<com.github.mikephil.charting.charts.PieChart
android:id="@+id/mobileStateChart"
android:layout_below="@id/gadgetTitle"
android:layout_width="match_parent"
android:layout_height="300dp"/>
</RelativeLayout>
</android.support.v7.widget.CardView>
答案 0 :(得分:2)
PieDataSet dataset = new PieDataSet(entries, "# of Calls");
dataset.setSliceSpace(0f);
我希望你有帮助