Sean Lynch

Results 296 comments of Sean Lynch
trafficstars

Hey @mhkeller, had a little bit of time to play around with this, and ran into some issues / have some suggestions. - No accessor associated for derived scales (must...

Hey @mhkeller, I found a way to implement `x1` and `y1` scales in LayerChart by leveraging it's ``, which I added to improve context types via `chartContext()` which extends `getContext('LayerCake')`...

@kongsgard This is all great feedback and has been on my mind - Trigger the tooltip when hovering points on the edge of the chart - This is a little...

This might only be present locally, as I haven't been able to produced on the fleshly deployed [site](https://www.layerchart.com/docs/examples/ZoomableMap)

Was a little surprised/confused that `$inspect(params)` returns an empty object unless wrapped in `JSON.stringify()`. With query string `?sort=desc`... ```js const params = queryParameters({ sort: true }); $inspect(params); ``` returns an...

The solution for LayerChart was to [implement](https://github.com/techniq/layerchart/pull/295) a component registration system where each primitive component [registers](https://github.com/techniq/layerchart/blob/main/packages/layerchart/src/lib/components/Circle.svelte#L86-L97) a `render` method and `Canvas` is responsible for (re)rendering as needed (when `invalidate()` is...