From f24c0d7bf4e2b8f0ea6ab7aa045282a7f56a3b65 Mon Sep 17 00:00:00 2001 From: Joel Ostblom Date: Mon, 8 Apr 2024 12:59:28 -0700 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Stefan Binder --- .../interactive_reorder_stacked_bars.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tests/examples_arguments_syntax/interactive_reorder_stacked_bars.py b/tests/examples_arguments_syntax/interactive_reorder_stacked_bars.py index 4cc3ac4dc..606bc37a1 100644 --- a/tests/examples_arguments_syntax/interactive_reorder_stacked_bars.py +++ b/tests/examples_arguments_syntax/interactive_reorder_stacked_bars.py @@ -7,17 +7,18 @@ and assigns a lower order (0) if there is a match. The use of "indexOf" checks for equality in an array, -which here allows for mutliple segments to be reordered +which here allows for multiple segments to be reordered by holding down the shift key while clicking the legend. """ # category: interactive charts import altair as alt from vega_datasets import data - selection = alt.selection_point(fields=['site'], bind='legend') -alt.Chart(data.barley.url).mark_bar().transform_calculate( +source = data.barley.url + +alt.Chart(source).mark_bar().transform_calculate( site_order=f"if({selection.name}.site && indexof({selection.name}.site, datum.site) !== -1, 0, 1)" ).encode( x='sum(yield):Q',