我正在使用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);
答案 0 :(得分:1)
您只定义一个点的坐标。 要绘制线条,您需要为两个不同的点定义坐标。
在数组中添加另一个具有不同X和Y值的GraphViewData。