在 GraphView 中向 Y 轴添加左填充

Add Left Padding to Y Axis in GraphView

我的 Y 轴上的小数点被空格覆盖了。

参考如下。

这是我的 GraphView XML 代码。

<android.support.v7.widget.CardView
        android:id="@+id/card_view2"
        android:layout_gravity="center"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        card_view:cardCornerRadius="4dp"
        android:layout_margin="20dp"
        android:elevation="30dp">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

            <include
                layout="@layout/activity_full_screen_humid"
                android:layout_width="match_parent"
                android:layout_height="200dp"
                android:layout_gravity="center"
                android:layout_weight="0.8"/>

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:background="@color/colorGrey"
                android:orientation="horizontal">

                <TextView
                    android:id="@+id/info_text2"
                    android:layout_width="40dp"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center"
                    android:layout_marginStart="10dp"
                    android:layout_weight="0.9"
                    android:text="@string/overall_humid"
                    android:textAllCaps="true"
                    android:textSize="15sp"
                    android:textStyle="bold" />

                <ImageButton
                    android:id="@+id/fullscreen2"
                    android:layout_width="40dp"
                    android:layout_height="60dp"
                    android:layout_marginEnd="10dp"
                    android:layout_weight="0.1"
                    android:adjustViewBounds="true"
                    android:cropToPadding="false"
                    android:onClick="onFullScreen"
                    android:scaleType="fitXY"
                    android:src="@drawable/fullscreen_icon" />

            </LinearLayout>
        </LinearLayout>
    </android.support.v7.widget.CardView>

这些是我用过的函数

        graph.getGridLabelRenderer().setLabelFormatter(new DateAsXAxisLabelFormatter(this));
        graph.getGridLabelRenderer().setNumHorizontalLabels(2);

        graph.getViewport().setMinX(d1.getTime());
        graph.getViewport().setMaxX(d3.getTime());
        graph.getViewport().setXAxisBoundsManual(true);
        graph.getGridLabelRenderer().setHumanRounding(false);

增加 layout_margin 不会改变任何东西。它只是让整个图更小。

有没有办法添加一些左填充,以便我可以在 Y 轴上看到整个小数点?

在弄乱函数后,我找到了解决方案。显然,您可以使用 getGridLabelRenderer.setPadding().

设置标签填充
graph.getGridLabelRenderer().setPadding(40);