0

我的 graphview 第一次尝试代码有问题:

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);
}

两个问题: - 背景仍然是白色 - 放大后,我无法缩小 - 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 回答