plotly.kt icon indicating copy to clipboard operation
plotly.kt copied to clipboard

An interactive Kotlin wrapper for plotly visualization tools

Results 12 plotly.kt issues
Sort by recently updated
recently updated
newest added

In the js-demo, the histogram x.numbers are getting updated every 300 ms, with this code: `GlobalScope.launch { while (isActive) { x.numbers = List(500) { rnd.nextDouble() } delay(300) } }` However,...

bug
dataforge
fixed in dev

More specifically, they do not work unless the container is running in host network mode. The problem seems to be that the PlotlyServer baseUrl is using a hostname that is...

feature

In order to use with dataforge-vis configuration editor. Probably at first, use reflective generators for JVM only.

feature

Include kotlinx-datetime and provide API to use it with TraceValues.

feature

Are there any plans to support 3d charts? If they are not officially supported yet are there any "not perfect but kinda works" examples or workarounds of how to use...

good first issue

TraceValues or something similar.

feature

As in [this plotly behaviour](https://plotly.com/python/images/). This would be greatly helpful, as I can see no other way at the moment to display a map behind a set of coordinates. If...

feature

Currently in many places the API looks like: ``` foo { param1 = 2 param2 = "hello" ... } ``` For example: ``` xaxis { name = "x axis name"...

feature
wontfix

Other variants of Plotly ([JS](https://plotly.com/javascript/multiple-axes/), [Python](https://plotly.com/python/multiple-axes/)) support plotting traces on multiple Y axes. It'd be great if that feature was ported to the Kotlin wrapper.

feature