12
If you want to load your chart like @Rajesh said you have to use a webview and than load the url of your chart by:
webview.loadUrl(CHART_URL);
add to your manifest
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
but if you are looking how to draw pie chart in android you can see this tutorial it has sample code attached to
https://stackoverflow.com/questions/10814142/how-to-use-google-chart-api
12
If you want to load your chart like @Rajesh said you have to use a webview and than load the url of your chart by:
webview.loadUrl(CHART_URL);
add to your manifest
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
but if you are looking how to draw pie chart in android you can see this tutorial it has sample code attached to
https://stackoverflow.com/questions/10814142/how-to-use-google-chart-api
Comments
Post a Comment