无法设置MPAndroidChart Horizo​​ntalBarChart的高度

时间:2017-12-21 14:33:07

标签: android android-layout mpandroidchart

我正在尝试在MPAndroidChart中设置Horizo​​ntalBarChart小部件的高度。您可以在Horizo​​ntalBarChart对象上调用的唯一高度相关方法是Worksheets("Tabelle1").Cells(1, 11).FormulaArray = _ "=SUMPRODUCT(TRANSPOSE(A1:C1),G1:G3)" ,这似乎没有帮助。我也尝试将Horizo​​ntalBarChart设置为setMinimumHeight(),但似乎忽略了这个值,图表仍然占用了比实际需要更多的空间。如何设置此图表的高度?

enter image description here

实施

fragment_home.xml

400dp

HomeFragment.java

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:tag="home">

<com.demo.companion.widgets.VerticalTextView
    android:id="@+id/tv_device_name"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:layout_marginTop="40dp"
    android:rotation="180"
    android:text="Watch Name"
    android:textColor="@color/green"
    android:textSize="65sp" />

<ImageView
    android:id="@+id/iv_watch"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentEnd="true"
    android:layout_marginTop="40dp"
    android:src="@drawable/watch" />

<RelativeLayout
    android:id="@+id/rl_bluetooth"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/iv_watch"
    android:layout_toRightOf="@+id/tv_device_name">

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/ic_bluetooth" />

    <TextView
        android:id="@+id/tv_bluetooth_status"
        style="@style/FTUEBody"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:text="Bluetooth Connected" />

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_marginRight="20dp"
        android:src="@drawable/ic_check" />
</RelativeLayout>

<com.github.mikephil.charting.charts.HorizontalBarChart
    android:id="@+id/vitals"
    android:layout_width="match_parent"
    android:layout_height="400dp"
    android:layout_alignParentBottom="true"
    android:layout_below="@+id/rl_bluetooth"
    android:layout_toRightOf="@+id/tv_device_name" />
</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

我通过在xml文件中设置边距来解决这个问题:

<com.github.mikephil.charting.charts.HorizontalBarChart
    android:id="@+id/vitals"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginBottom="50dp"     <!-- adjust -->
    android:layout_marginTop="50dp"        <!-- accordingly -->
    android:layout_alignParentBottom="true"
    android:layout_below="@+id/rl_bluetooth"
    android:layout_toRightOf="@+id/tv_device_name" />

编辑::

mChart.setExtraTopOffset(-155);