I want to use HighCharts in Android and iOS mobile apps . Is there any libraries or Gradle dependencies are availble in Android or iOS?
相关问题
- How can I create this custom Bottom Navigation on
- Bottom Navigation View gets Shrink Down
- How to make that the snackbar action button be sho
- Listening to outgoing sms not working android
- How to create Circular view on android wear?
If you have already written code in
Highcharts
and want to display it iniOS
, then the best way would be to display the chart inside awebView
. From this answer:OR
You could use one of the many native libraries available for android and iOS. "Why would I want to do that" you ask? Well, for starters, Native code performs much smoother and faster than HTML/Javascript-code-inside-a-webview. Additionally, you would have much finer control of what you display. For instance, you could handle Clustering inside your app itself.
Here are some of the good ones I know, but there are lots of good libraries if you search.
Android : MPAndroidChart
iOS : iOS-Charts and JBChartView
You may check the following libraries