Mattijn van Hoek
Mattijn van Hoek
We have to cast the `nw.Date` type to `nw.Datetime` only because polars does not support time directives isn't it? Maybe we check upfront if we have to cast or not....
Cross-ref of an example of an applied thinning algorithm, https://github.com/vega/vegafusion/issues/350#issuecomment-1774211538. It’s in Python, but it should be possible to do similar in JS.
> I see that you used JupyterChart to replace the entire chart on changes to the width signal. How is the performance of that? The reference I included was a...
Thanks for raising. You did not miss it. For now it is recommended to use a (2D) faceted chart: https://altair-viz.github.io/user_guide/compound_charts.html#facet-chart 
Reproducible in Vega-Lite. This works: ```json { "$schema": "https://vega.github.io/schema/vega-lite/v5.21.0.json", "data": { "values": [ {"x": "lorem ipsum", "y": 1, "offset": "foo"}, {"x": "dolor sit", "y": 2, "offset": "foo"}, {"x": "lorem ipsum",...
Pretty awesome to merge a 5 year old PR. Thanks for all the hard work here!
cross referencing this comment: https://github.com/vega/altair/issues/3416#issuecomment-2334258014
Thanks for the PR! Tests are still failing. I'm not sure why there are 381 files changes, that seems off. Next, regarding the added example: [Open the Chart in the...
I’m trying to create a bar chart race using the gapminder dataset using this new `Time` encoding channel. My result now looks like this ([Open in Editor](https://vega.github.io/editor/#/url/vega-lite/N4Igxg9gdgZglgcxALlANzgUwO4tJKAFzigFcJSBnAdTgBNCALFAZgAY2AacaYsiygAlMiRoVYcAvpO50AhoTl4QpAE4AbFCDGEADpWQB6Q2DpQAdACtKdTOrhpV5qJkKGougLaG0mBHIBaeUVKV0oAATQARnMAJgBOczZDYLlDfy8SWydraBAZEE85VQBrZUIAT11MLQAjYvzuTChIOhIkVBBiTxrO+Ds6LQrMBu5K6q0IVTaoOU0CgA9lfvVB5BBdCF0QMarekABHUjkiOEViX0aQCuWsVa1IUiJVG92J9agITxI5-ILdYpyTyUFAAbVAsx6WgBqiBAH0WAA2HYgULqTBgcSdcb7TYkcTcFZ0EHIUHXEaqEAAXW4eXW3UwlOkNK6sKglBgU08YNA8HUhEZtwGDwoz1eIGgmAA8jAwSAAEInBDqOS2SjMbjy2EALzgmm4AGFGD8UQBJKBtJTcc10SWUOBWkAAKTkAKgKIAspgFnBICiAHKIRkOlEABTkJTglEU7u4AFUoGdMHQAAQAZXOmBBVOknF5eoFlM6MKB0MBngRyOZ3AAJJQwIxMEUtDp9EYfH45OYEGdGKRauY4BBDPXG0UO-4AvYBT5EeYYmwrJQ8pIgA)): https://github.com/user-attachments/assets/90e3d97b-93ef-4064-bfd2-ee45187f7aa6 Created with...
Setting `"stack": "False"` on the `x` encoding channel makes the bars start from zero. https://github.com/user-attachments/assets/dd1271b8-3413-464d-80ee-810b5df5b5ab So the remaining is how to have the bars reorder on each frame without erroring...