0

グラフビューの最初の試行コードに問題があります:

GraphView graphView;
GraphViewSeries series;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    GraphViewData[] data = new GraphViewData[4];
    Double[] x_values = new Double[] { 1.0, 2.0, 3.0, 4.0 };
    Double[] y_values = new Double[] { 1.0, 2.0, 3.0, 4.0 };

    for (int i = 0; i < data.length; i++) {
        data[i] = new GraphViewData(x_values[i], y_values[i]);
    }

    series = new GraphViewSeries(data);

    graphView = new LineGraphView(this, "Title");
    graphView.addSeries(series);
    graphView.setScrollable(true);
    graphView.setScalable(true);
    graphView.setBackgroundColor(Color.BLACK);

    LinearLayout l = (LinearLayout) findViewById(R.id.linearLay);
    l.addView(graphView);
}

2 つの問題: -背景がまだ白い -ズームインした後、ズームアウトできない -x 軸のラベルが表示されない

4

1 に答える 1

3

白い背景については、次を追加してみてください。

((LineGraphView) graphView).setDrawBackground(true);

次のようにラベルの色を設定できます。

graphView.getGraphViewStyle().setHorizontalLabelsColor(Color.BLACK);
graphView.getGraphViewStyle().setVerticalLabelsColor(Color.BLACK);

うまくいくことを願っています!

ブラ、ティム

于 2013-11-06T09:35:13.687 に答える