Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create touch interactive charts for android [closed]

I need charts for my application where the user use gesture to redraw the charts in android. Could you suggest any charting API,tool or software which supports.

like image 705
Bala Avatar asked Apr 27 '10 13:04

Bala


People also ask

How do you make an interactive graph in html?

To start we will create our html markup for the graph. We will create a <div> with the class “graph-wrapper”. Inside of this <div> we will add two more <div>. The first one will have the “graph-info” class, this div will contain the graph legend and the buttons that will allow us to switch between graphs.

What is interactive chart?

An interactive chart presents data in stages so you can emphasise the relationship between groups of data. You can use an interactive chart to show data like sales by group over time, expenses by department and population changes by region per continent.


2 Answers

ZingCharts is a javascript library that can be included in an HTML page which was loaded into a WebView. You can pass the data in JSON format to the javascript function. Graphs are animated, interactive, eye-catchy and fast as well. I used evaluation version and it worked well.

like image 103
CodeFury Avatar answered Sep 22 '22 11:09

CodeFury


Check out AndroidPlot: http://androidplot.com

Like the previous poster said, you'll have to implement the gesture/keypress event handling yourself.

like image 30
Nick Avatar answered Sep 21 '22 11:09

Nick