Fritz Lekschas

Results 180 comments of Fritz Lekschas

Closing this ticket as I believe the question is answered. At the moment you cannot have more than one key map to the same action unfortunately.

But thanks a lot for reporting! 🙏 I'll merge the bug fix PR today and should be able to cut a release with the fixes soon.

I agree this would be an absolutely fantastic feature! And it's on my radar for a while now. Unfortunately this feature isn't trivial to implement and it'll likely take a...

Right now all lines are spline interpolated as that works well across many use cases. Unfortunately you can't control the "curviness" or even render straight lines. Technically that would of...

It should be fairly straight forward. All we gotta do is have an option to skip `createSplineCurve` in https://github.com/flekschas/regl-scatterplot/blob/master/src/index.js#L2014 and instead pass `newPoints` directly into https://github.com/flekschas/regl-scatterplot/blob/master/src/index.js#L2020. The only extra bit...

I just realized, there's an easy workaround to achieve straight lines: ``` scatter.options({ 'pointConnectionTolerance': 1 }) ``` By increasing the tolerance, fewer to literally no interpolated points are added. E.g:...

FYI, there are a few glitches related to connected scatterplots I recently found and fixed in #125. I'm hoping to cut a new release with the fixes soon 🤞

Unfortunately such a feature is not available yet. The closest thing you can get is drawing grid lines where the axis ticks are. While not the same as a dedicated...