You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Every property of every function in Altair defaults to Undefined. In Python, the default is normally None, but None translates to null in JSON, which has special meaning in Vega-Lite. So we created a new sentinel called "Undefined" to denote parameters that are not defined.
A bit confusing? Yes, but it seemed like the best way forward.
(an alternative would have been for every function signature to just be **kwargs, but then the parameters would not be explicitly listed in the call signature and would not tab complete)
In the docs at https://altair-viz.github.io/user_guide/generated/toplevel/altair.Chart.html?highlight=error%20bars#altair.Chart.configure_axisRight, all properties are defaulting to undefined.
The text was updated successfully, but these errors were encountered: