-1

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

Reno
  • 33,594
  • 11
  • 89
  • 102
  • possible duplicate of [FusionCharts in Android?](http://stackoverflow.com/questions/5894107/fusioncharts-in-android) – Reno Oct 24 '11 at 04:52
  • i want to edit my question .. Can you please tell me how to use google charts AND fussion charts in android . Please tell me how to use BOTH.Your help will be appreciated –  Oct 28 '11 at 10:31

1 Answers1

2

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

Community
  • 1
  • 1
sudipto
  • 2,472
  • 1
  • 17
  • 21
  • I Used fusion chart and prepare a chart by it and now the question arises how to use that chart code in webview in android .. The Code is as follows:- –  Oct 24 '11 at 08:23
  • This seems to be the Google Gadget and this is from internet. So, it seems that you would first need to allow internet access to your application. Then if you pass the whole URL to the WebView using webview.loadUrl("google URL here") it might work. – sudipto Oct 24 '11 at 09:57
  • I will try to do that. Recently I have upgrade my mac to Lion and I need to re install a few things. Once I setup these I will try to provide a sample. – sudipto Nov 04 '11 at 14:50