GraphView库x和y轴

时间:2012-08-12 17:52:32

标签: java android graph

我正在使用GraphView库,我想使用方法GraphViewData来显示LineGraph。说实话,我不知道如何用这个库生成LineGraph。所以我删除了显示LineGraph的示例模拟数据,并将其替换为我自己的x数据和y数据。

但我做错了什么,它没有显示它自己的线,只有它填充x轴和y轴:

Bundle extras = getIntent().getExtras(); 
if(extras != null) {
    valueX = extras.getDouble("xValue");
    valueY = extras.getDouble("yValue");
    Log.d("X = " + valueX, " Y = " + valueY);
}

GraphViewSeries exampleSeries = new GraphViewSeries(
    new GraphViewData[] {
        new GraphViewData(valueX, valueY)
    });

// graph with dynamically genereated horizontal and vertical labels
GraphView graphView;
graphView = new LineGraphView(
    this,                         // context
    "Incomming Bluetooth Data");  // heading
graphView.addSeries(exampleSeries); // data

LinearLayout layout = (LinearLayout) findViewById(R.id.graph1);
layout.addView(graphView);

1 个答案:

答案 0 :(得分:1)

您只定义一个点的坐标。 要绘制线条,您需要为两个不同的点定义坐标。

在数组中添加另一个具有不同X和Y值的GraphViewData。