How to display a pie chart in blackberry application using rim apis? Are there controls available in the rim apis or how can it be done? Can some help me by sharing the code snippet
标签:
blackberry
相关问题
- How to make background of BrowserField transparent
- Eclipse Blackberry Preprocessor Not Working?
- Cannot register in sample BlackBerry push applicat
- Problem sending AJAX request with headers on Black
- decrypting data with AES/CBC/PKCS5Padding using bl
相关文章
- To get the module names in blackberry
- How to close a global dialog and display another i
- How to install a draft app on a blackberry sandbox
- FB SDK not working on OS 7
- Parent & Child Node with different images & Clicka
- SQLite for BlackBerry
- How to send SMS Programmatically in Blackberry
- Twitter Integration in Blackberry: Login Page not
The Google Chart API allows you to provide a URL to the Google service, which in turn returns a chart image. This capability is useful from the BlackBerry smartphone because data can be passed from the BlackBerry smartphone and generates a corresponding chart image on the BlackBerry smartphone.
here are the type of the chat you can do
Here are the chat types defined in Google API.
The all you need to do is to request the chat URL. it will download as image to your device. The URL format is given below.
http://chart.apis.google.com/chart?&cht=p3&chd=t:250,100,40&chs=320x200&chl=Apple|Grapes|Mango
cht = chart type chd = chart data chs = chart size chl = chart label
Enjoy.