Andrei Kislitsyn

Results 18 comments of Andrei Kislitsyn

Seems like now the only problem is mockk. But it was fixed here: https://github.com/mockk/mockk/pull/1161

I mean compatibility with 1.8

To support a greater range of usages. Why not?

In particular, DataFrame has compatibility with 1.8

Do we have to sacrifice because of that? Anyway skia module should be separated, so there will be no problems.

I apologise, of course I meant `elementLine()`.

``` fun myPlotWithFlavor(flavor: Flavor): Plot { plot { .... layout.flavor = flavor } } ``` val plots = flavors.map { myPlotWithFlavor(it) }

Current design: Add `Plot.configure {}` extension, that allows to add new layers and modify the layout.

Hello! You can build a Bullet bar charts with a several manipulations with data and usual bars: ``` val category1 = listOf("category1", 30, 60, 80, 105) val category2 = listOf("category2",...