Skip to content
Cyklosdeep edited this page Oct 25, 2024 · 1 revision

GraphView graph = (GraphView) findViewById(R.id.graph); LineGraphSeries series = new LineGraphSeries(new DataPoint[] { new DataPoint(0, 1), new DataPoint(1, 5), new DataPoint(2, 3), new DataPoint(3, 2), new DataPoint(4, 6) }); graph.addSeries(series);

Clone this wiki locally