AChartEngine图标图标大小

时间:2015-02-24 14:37:00

标签: android achartengine

我在整个stackoverflow中寻找答案,通过achartengine的XYMultipleSeriesRenderer文档,我认为是时候提出这个问题了。

我的传奇中的图标很小。而且没有任何功能可以让它们更大。我尝试设置图例高度,拟合图例,为图例设置不同的文字大小,以及无数其他组合。有没有办法改变图标大小?

这是一张图片:tiny icons

如果仔细观察,图例中的两个项目都会有一个带点的小线。

1 个答案:

答案 0 :(得分:0)

我也有这个问题。我通过隐藏传奇来解决它

mRenderer.setShowLegend(false);

并添加到我的图表下方的.xml-File我的传奇:

<强> graph.xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
        android:id="@+id/chart"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" />

<LinearLayout
    android:id="@+id/legend"
    android:layout_below="@+id/chart"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:layout_centerHorizontal="true"
    android:orientation="horizontal">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="-.- Correct"
        android:textColor="@android:color/holo_red_dark"/>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="5dp"
        android:text="-.- Total"
        android:textColor="@android:color/holo_blue_dark/>

</LinearLayout>

</RelativeLayout>