我正在使用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);
最佳答案
您只能定义一个点的坐标。
要绘制线条,您需要定义2个不同点的坐标。
在数组中添加另一个具有不同X和Y值的Graph ViewData。
关于java - GraphView库的x和y轴,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11924420/