跟进这个问题,我还有两个额外的选项可以实现:
- 将标签的位置设置在图表中间,无论条形高度如何
- 格式标签显示为字符串的一部分,包括括号
我的代码目前如下所示:
df = pd.DataFrame({'name':['bar','foo'],
'presented_value':[2,20],
'coloring_value':[1,25]})
base = (alt.Chart(df, height=250, width=375).mark_bar()
.encode(
x='name',
y=alt.Y('presented_value', axis=alt.Axis(orient='right')),
color='name'
)
)
bars = base.mark_bar().encode(color=alt.condition(
alt.datum.presented_value > alt.datum.coloring_value,
alt.value('lightgreen'),
alt.value('darkred')
))
text_sub_brand = base.mark_text(
align='center', baseline='bottom',
dy=35, fontSize=24
).encode(
text='presented_value'
)
text_cluster = base.mark_text(
align='center', baseline='bottom',
dy=50, fontSize=16
).encode(
text='coloring_value'
).transform_calculate(label='"Cluster value: " + datum.coloring_value')
(bars + text_sub_brand + text_cluster).properties(width=700)
关于放置我尝试了MarkDef
使用文档here的不同参数,但没有找到允许相对于图表而不是条形放置的选项。如上图所示,foo
我想避免标签出现在 Y 轴区域之外的情况。
关于格式,我尝试在此处实施解决方案,但由于某种原因在我的情况下不起作用。理想情况下,我希望格式为,label='"(" + datum.coloring_value + ")"')
但使用括号会导致 JavaScript 错误:
This usually means there's a typo in your chart specification. See the javascript console for the full traceback.
这可以做到吗?谢谢!