plotly.kt
plotly.kt copied to clipboard
An interactive Kotlin wrapper for plotly visualization tools
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,...
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...
In order to use with dataforge-vis configuration editor. Probably at first, use reflective generators for JVM only.
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...
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...
Currently in many places the API looks like: ``` foo { param1 = 2 param2 = "hello" ... } ``` For example: ``` xaxis { name = "x axis name"...
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.