walterBshp
Lurker
Howdy,
I'm trying to create an activity that will show me a bar graph and under it a list with the values. I've found that achartengine was a good option to create graphs on android but now I've no idea on how to add a listview under the graph since it creates an intent and then calls startactivity.
ChartFactory.getBarChartIntent its found on the achartengine library.
Any ideas?
Thanks in advance.
I'm trying to create an activity that will show me a bar graph and under it a list with the values. I've found that achartengine was a good option to create graphs on android but now I've no idea on how to add a listview under the graph since it creates an intent and then calls startactivity.
Code:
Intent intent = ChartFactory.getBarChartIntent(this, getBarDemoDataset(), renderer, Type.DEFAULT);
startActivity(intent);
ChartFactory.getBarChartIntent its found on the achartengine library.
Any ideas?
Thanks in advance.