zaiff
zaiff

Reputation: 1009

draw a distribution graph in android

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.

enter image description here

Upvotes: 0

Views: 1272

Answers (3)

himanshu
himanshu

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

Raj
Raj

Reputation: 1872

yas.. we can draw with the help of paint and canvas on to a BitMap.

Upvotes: 0

Bostone
Bostone

Reputation: 37126

Just use Android built-in 2D libraries. Here's good example to get you started:

Upvotes: 0

Related Questions