重新排序堆叠条形图段#
此示例使用计算转换来检查“site”列的值与图例中的点击值是否匹配,如果有匹配,则分配一个较低的顺序 (0)。使用“indexOf”检查数组中的相等性,这里允许通过在单击图例时按住 shift 键来重新排序多个部分。
import altair as alt
from vega_datasets import data
selection = alt.selection_point(fields=['site'], bind='legend')
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',
y='variety:N',
color='site:N',
order='site_order:N',
opacity=alt.when(selection).then(alt.value(0.9)).otherwise(alt.value(0.2))
).add_params(
selection
)
import altair as alt
from vega_datasets import data
selection = alt.selection_point(fields=['site'], bind='legend')
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',
y='variety:N',
color='site:N',
order='site_order:N',
opacity=alt.when(selection).then(alt.value(0.9)).otherwise(alt.value(0.2))
).add_params(
selection
)
# No channel encoding options are specified in this chart
# so the code is the same as for the method-based syntax.