I am trying to implement curve graph in android. For that i have used achartEngine library but it is providing line graph, pie graph,bar graph but not curve graph. Can you suggest some other library for curve graph? Thanks in advance
Asked
Active
Viewed 1,589 times
0
-
You can use android plot see link http://stackoverflow.com/questions/18014834/how-to-make-line-with-rounded-smooth-corners-with-androidplot – keshav Dec 11 '13 at 06:35
1 Answers
1
You can definitely draw such line charts with AChartEngine. Instead of creating a line chart view or intent, you need to create a cubic line chart one. So you will need to replace:
ChartFactory.getLineChartView(...);
with:
ChartFactory.getCubicLineChartView(...);

Dan D.
- 32,246
- 5
- 63
- 79