MikolajMichalczak

Results 33 comments of MikolajMichalczak

Hi all! Sorry for the late response. Here is a way to use Highcharts with Jetpack Compose. Firstly, create an XML layout with HIChartView: ```xml ``` Secondly, inflate the layout...

@srenrd, please try this implementation (update the chart options in the update method): ```kotlin @Composable fun HighChartsView() { var data: List by rememberSaveable { mutableStateOf(emptyList()) } LaunchedEffect(true) { delay(5000) data...

Hi, here is one of the possibilities using the `file:///android_res/` path: https://github.com/highcharts/highcharts-android/issues/152#issue-662600352. Another option is to convert a drawable to a bitmap and then to a base64 string, and include...

> The redraw event can be triggered after any action that will result any visible change on the graph, including adding/removing one or multiple series/data point, modifying x or y...

Additionally, to make tooltip following the finger, you can use `setFollowTouchMove()` method.

Hi there, Thank you for sharing your experience. This behavior can occur when asynchronously fetched data is delivered very quickly. Conceptually, on the Android side, all objects have been created...

Closing due to inactivity. Please feel free to reopen the ticket if you have any further questions.

Hi all! This issue was fixed in version 11.4.1.

This issue is no longer relevant in the 11.4.1 version.

It seems to be a duplicate of #46.