Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试在我的 android 应用程序中使用 HighCharts,但我找不到适用于 Android 的示例。我将官方示例中的图表添加到我的应用程序中,但我不明白,如何动态更新控件中的数据。
还没有真正使用过 HighCharts ,但我相信你正在使用 android 中的 webview,并调用一些接受一些参数并将其显示为图表的 javascript 函数。
如果这是流程,那么您需要制作一个 javascript 函数,通过该函数您将获取一些数据并将其显示在图表中。然后要调用该函数,您必须调用:
WebView.loadUrl("javascript:plotLine('[1,2,3,4,5,6,7,8,9]')");
希望有帮助