1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
"""
Interactive Legend
------------------
The following shows how to create a chart with an interactive legend, by
binding the selection to ``"legend"``. Such a binding only works with
``selection_point`` when projected over a single field or encoding.
"""
# category: interactive charts
import altair as alt
from vega_datasets import data
source = data.unemployment_across_industries.url
selection = alt.selection_point(fields=['series'], bind='legend')
alt.Chart(source).mark_area().encode(
alt.X('yearmonth(date):T').axis(domain=False, format='%Y', tickSize=0),
alt.Y('sum(count):Q').stack('center').axis(None),
alt.Color('series:N').scale(scheme='category20b'),
opacity=alt.condition(selection, alt.value(1), alt.value(0.2))
).add_params(
selection
)
|