diff --git a/eds_scikit/plot/table_viz.py b/eds_scikit/plot/table_viz.py index 2975db6d..aafd617b 100644 --- a/eds_scikit/plot/table_viz.py +++ b/eds_scikit/plot/table_viz.py @@ -264,7 +264,7 @@ def visualize_table( alt.Chart(table_count) .mark_bar() .encode( - x=col + ":N", + x=col + ":N", y="sum(count):Q", color=alt.Color(col + ":N", scale=color_scale), opacity=alt.condition(selections[col], alt.value(1), alt.value(0.3)),