Reputation: 1009
I want to draw a simple graph like this in android. Can it be drawn without the help of any external jar. Please give some solution.I have searched a lot but unable to get any information on this.Actually this is a bell curve, and every where i got an equation i.e the Gaussian equation, but i exactly don't know how to use it(get the X and Y coordinates from it).Please help.
Upvotes: 0
Views: 1272
Reputation: 1980
Here's a project developed by developers to display different charts in android...
http://code.google.com/p/chartdroid/
http://code.google.com/p/chartdroid/wiki/Screenshots
EDIT:-
The below link will also help you.See the last answer posted by Pied Piper
https://stackoverflow.com/questions/424752/any-good-graphing-packages-for-android
Upvotes: 1
Reputation: 37126
Just use Android built-in 2D libraries. Here's good example to get you started:
Upvotes: 0