We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a18ffb commit 19b7aecCopy full SHA for 19b7aec
chartlets.py/my_extension/my_panel_2.py
@@ -83,7 +83,13 @@ def make_figure(
83
)
84
.properties(width=300, height=300, title="Vega charts using Shorthand syntax")
85
.add_params(selector)
86
- .interactive()
+ # .interactive() # Using interactive mode will lead to warning
87
+ # `WARN Scale bindings are currently only supported for scales with
88
+ # unbinned, continuous domains.`
89
+ # because it expects both x and y to be continuous scales,
90
+ # but we have x as Nominal which leads to this warning.
91
+ # This still works where we can only zoom in on the y axis but
92
+ # with a warning.
93
94
return chart
95
0 commit comments