为折线图指定工具提示时,工具提示仅在沿线悬停在点上时出现,而不会在沿线悬停在任何其他位置时出现。这在使用非线性插值时尤其成问题......有没有办法在线条本身上显式设置工具提示?
import altair as alt
from vega_datasets import data
source = data.jobs.url
alt.Chart(source).mark_line(interpolate="basis").encode(
alt.X('year:O'),
alt.Y('perc:Q', axis=alt.Axis(format='%')),
color='sex:N',
tooltip='sex:N'
).properties(
title='Percent of work-force working as Welders'
).transform_filter(
alt.datum.job == 'Welder'
)
慕村9548890
慕哥6287543
相关分类