gpt4 book ai didi

android - MPAndroidchart 底部缺少水平线

转载 作者:行者123 更新时间:2023-11-29 02:30:25 24 4
gpt4 key购买 nike

我使用精彩的 MPAndroidchart 库创建了一个 android 应用程序,不幸的是我遇到了一些错误。当手机将字体设置为更大的尺寸时,图形中的底线似乎消失了,但如果设备使用正常字体大小,底部的线仍然可见

enter image description here

<?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:background="@color/app_col_transparent">

<LinearLayout
android:id="@+id/FragmentTrenMonth_lnFilter"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="horizontal"
android:weightSum="3">



<LinearLayout
android:layout_width="0px"
android:layout_height="@dimen/_20sdp"
android:layout_margin="@dimen/_5sdp"
android:layout_weight="1"
android:background="@color/app_background_white">

<android.support.v7.widget.AppCompatSpinner
android:id="@+id/FragmentTrenMonth_spnMaterial"
android:layout_width="match_parent"
android:layout_height="@dimen/_20sdp"></android.support.v7.widget.AppCompatSpinner>
</LinearLayout>

<LinearLayout
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_margin="@dimen/_5sdp"
android:layout_weight="0.9"
android:background="@color/app_background_white">

<android.support.v7.widget.AppCompatSpinner
android:id="@+id/FragmentTrenMonth_spnSatuan"
android:layout_width="match_parent"
android:layout_height="@dimen/_20sdp"
android:entries="@array/spiner_arrays_tren"></android.support.v7.widget.AppCompatSpinner>
</LinearLayout>

<LinearLayout
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_margin="@dimen/_5sdp"
android:layout_weight="1"
android:background="@color/app_background_white"
android:visibility="invisible">

<android.support.v7.widget.AppCompatSpinner
android:id="@+id/FragmentTrenMonth_spnFormId"
android:layout_width="match_parent"
android:layout_height="@dimen/_20sdp"></android.support.v7.widget.AppCompatSpinner>
</LinearLayout>
</LinearLayout>

<com.github.mikephil.charting.charts.LineChart
android:id="@+id/FragmentTrenMonth_chart"
android:layout_width="match_parent"
android:layout_height="@dimen/_250sdp"
android:layout_alignParentBottom="true"
android:layout_below="@id/FragmentTrenMonth_lnFilter"
android:layout_margin="@dimen/_20sdp"
android:clipChildren="false"
android:clipToPadding="false"
android:gravity="center_vertical" />
</RelativeLayout>

最佳答案

在您的代码中使用以下行:

chart.getXAxis().setPosition(XAxis.XAxisPosition.BOTTOM);  // for showing below axis

chart.getXAxis().setPosition(XAxis.XAxisPosition.TOP); // for top

chart.getXAxis().setPosition(XAxis.XAxisPosition.BOTH_SIDED); // for showing top and bottom both

关于android - MPAndroidchart 底部缺少水平线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49812632/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com