【发布时间】:2020-11-02 12:18:00
【问题描述】:
我有以下代码
brush = alt.selection_interval()
selection = alt.selection_multi(fields=['Sex'])
color = alt.condition(selection,
alt.Color('Sex:N', legend=None),
alt.value('white'))
scatter = alt.Chart(abaloneData).mark_circle().encode(
alt.X(alt.repeat("column"), type='quantitative'),
alt.Y(alt.repeat("row"), type='quantitative'),
color=color
).properties(
width=140,
height=140
).repeat(
row= ['Ring Number', 'Diameter', 'Shell Length', 'Height'],
column=['Whole Wt', 'Shucked Wt', 'Viscera Wt', 'Shell Wt']
#try switching these to see which wa looks better
).add_selection(
brush
)
legend = alt.Chart(abaloneData).mark_point().encode(
y=alt.Y('Sex:N', axis=alt.Axis(orient='right')),
color=color
).add_selection(
selection
)
scatter | legend
但我想找到一种方法,让我的情节中的其他元素在用户选择从图例中按性别进行过滤时消失。有什么办法可以做到这一点吗?我知道有一种方法可以使用单选按钮和下拉过滤器来实现,但我只是想知道是否也可以使用图例来实现。
谢谢
【问题讨论】:
标签: legend interactive altair