I am making an app in which i have to use fusion charts to represent some data so anyone can help me in how to do this
edit
: Can you please tell me how to use google charts AND fussion charts in android
I am making an app in which i have to use fusion charts to represent some data so anyone can help me in how to do this
edit
: Can you please tell me how to use google charts AND fussion charts in android
You can try once the sample application from PhoneGap API to query call-logs which I created using FusionCharts and PhoneGap. The charts came fine in my application.
In case you are not comfortable using PhoneGap, you can also use WebView object. However, you need to make sure to enable a few settings like:
You might need to enable JavaScript and plugins for the WebView:
webview.getSettings().setJavaScriptEnabled(true);
webview.getSettings().setPluginsEnabled(true);
Reference: http://developer.android.com/reference/android/webkit/WebView.html