Grzegorz Bielak
Grzegorz Bielak
You can probably use `value` property from `uPlot.Series` => https://github.com/leeoniya/uPlot/blob/master/dist/uPlot.d.ts#L831 When defining series you do sth like this: ``` value: (self, v) => { return v; // map here however...
> i think the main concern was that it's hard to properly detect dotted vs dashed from the canvas array variant Maybe segments comparison would be a good idea. When...
Yeah, that should solve it
@leeoniya I've prepared PoC with SVG for the legend marker. Initially, I've tried to reuse `dash` definition from series but it's not going to work. The main problem is to...
I have fixed this by setting `range` property instead of `min` and `max`. ``` { scales: { y: { auto: false, range: [-15, 15] } } } ``` Before we...
The deal is to make it work with AOT.