下の画像を参照してください。グラデーションが正しく描画されておらず、縦の黒い線が醜いだけです。
min
からまで広がるグラデーションを作成するにはどうすればよいmax
ですか? たとえば、スケールが 0 から 100 の場合、領域でこれらの 0..100 の N 個のグラデーション値を使用する必要があります。- 縦の黒い線を削除するにはどうすればよいですか?
更新:このアーティファクトを取得することを除いて、提供された回答は機能します:
更新 2:LinearLayout
これは、以下に示すようにONE を使用する場合にのみ発生します。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/chart_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="3dip" >
<Spinner
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<Spinner
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<Spinner
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
次に、TChart
が に追加されchart_layout
ます。バム!オフセットエラー:)