改变Altair中传奇的大小

问题描述 投票:2回答:1

我喜欢Altair创建等轴测图!然而,我最大的问题是我无法弄清楚如何改变图例的大小。我已阅读文档并尝试了几件事无济于事。

以下是使用Altair文档中的unemployment map by county的示例。我添加了一个'config'图层来更改地图和图例上标题的字体大小。注意“config”中代码的.configure_legend()部分。

counties = alt.topo_feature(data.us_10m.url, 'counties')
source = data.unemployment.url

foreground = alt.Chart(counties).mark_geoshape(
    ).encode(
    color=alt.Color('rate:Q', sort="descending",  scale=alt.Scale(scheme='plasma'), legend=alt.Legend(title="Unemp Rate", tickCount=6))
).transform_lookup(
    lookup='id',
    from_=alt.LookupData(source, 'id', ['rate'])
).project(
    type='albersUsa'
).properties(
    title="Unemployment Rate by County",
    width=500,
    height=300
)

config = alt.layer(foreground).configure_title(fontSize=20, anchor="middle").configure_legend(titleColor='black', titleFontSize=14) 

config

这是图像应该是什么样子:

enter image description here

如果我像这样改变地图的大小:

counties = alt.topo_feature(data.us_10m.url, 'counties')
source = data.unemployment.url

foreground = alt.Chart(counties).mark_geoshape(
    ).encode(
    color=alt.Color('rate:Q', sort="descending",  scale=alt.Scale(scheme='plasma'), legend=alt.Legend(title="Unemp Rate", tickCount=6))
).transform_lookup(
    lookup='id',
    from_=alt.LookupData(source, 'id', ['rate'])
).project(
    type='albersUsa'
).properties(
    title="Unemployment Rate by County",
    width=900,
    height=540
)

config = alt.layer(foreground).configure_title(fontSize=20, anchor="middle").configure_legend(titleColor='black', titleFontSize=14) 

config

图例保持相同的大小,因此它与地图相比现在看起来很小:

enter image description here

或者,如果我使地图尺寸变小,那么传说将是巨大的!

enter image description here

我试过了十几种不同的东西但无济于事。

有人有解决方案吗?

python gis data-science vega-lite altair
1个回答
3
投票

如您所见,图例的默认大小(以像素为单位)是恒定的,与图表的大小无关。如果您想调整它,可以使用configure_legend()图表方法。

在Altair 3.0或更高版本中,以下参数是用于调整图例渐变大小的相关参数:

chart.configure_legend(
    gradientLength=400,
    gradientThickness=30
) 
© www.soinside.com 2019 - 2024. All rights reserved.