我对Achartengine条形图有两个问题。我的布局是左边的数据表和右边的图表(按照下面的布局):
<LinearLayout android:layout_height="wrap_content" android:layout_width="match_parent" android:gravity="center_horizontal" android:orientation="horizontal">
<TableLayout android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/tblData"></TableLayout>
<LinearLayout android:layout_height="wrap_content" android:layout_width="match_parent" android:orientation="horizontal" android:id="@+id/layoutChart" />
</LinearLayout>
第一个表布局用于数据表,第二个行布局用于图表。如果我将它们放在垂直布局中,或者将图表放在图表后面(在这种情况下表格会消失),则不会显示图表或数据。
如果数据变大,最终图表也应该在X轴上正确增长,但条形图停止显示并消失。 第二个问题,我无法在它上面显示图表和下面的表格。纵向垂直方向使图表可见或表格。
请建议。