我有以下代码
import { authenticateAzure: authAction } from '../../actions/auth_actions';
// authenticateAzure shadows outer scope
const Authenticate = ({ authenticateAzure }) => {
// use authAction()...
}
但是我想找到一种方法,当用户选择从图例中按性别进行过滤时,使图中的其他元素消失。有什么办法可以做到这一点?我知道有一种方法可以使用单选按钮和下拉过滤器,但我只是想知道是否也可以通过图例来实现。
谢谢
答案 0 :(得分:0)
您可以使用本机交互式图例并限制所选内容的不透明度。像这样的东西(由于您未提供任何示例数据,因此未进行测试):
selection = alt.selection_multi(fields=['Sex'], bind='legend')
scatter = alt.Chart(abaloneData).mark_circle().encode(
alt.X(alt.repeat("column"), type='quantitative'),
alt.Y(alt.repeat("row"), type='quantitative'),
color=alt.Color('Sex:N'),
opacity=alt.condition(selection, alt.value(1.0), alt.value(0.0))
).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(
selection
)