Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Phonegap + jQuery Mobile + Stock / Line Chart

Im trying found a solution for line/stock charts drwaing in phonegap application. Ive tried many libraries: amcharts JS, highcharts, but no one working.

Could somebody help me with this task? Any solutions are welcome. Platforms: Android, iOS.

like image 486
kudzu Avatar asked Dec 28 '11 04:12

kudzu


1 Answers

I had the same kind of problem. I created a JQuery mobile page with Google Visualizations. This seemed to work well in a browser. Then I used Phonegap to deploy it to Android and the charts did not work. Reason for this turned out te be that the Android Webkit browser in earlier releases cannot handle SVG, and Google Visualizations was using SVG for the Charts.

I now use JQPlot and the Charts work well on the Android/Phonegap version.

like image 132
Edwin Avatar answered Sep 18 '22 12:09

Edwin