0

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

Snehal
  • 233
  • 1
  • 3
  • 13

1 Answers1

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,096
  • 5
  • 61
  • 79