删除由altair生成的vegaEmbed几何形状周围的边框?

时间:2019-06-17 20:30:26

标签: python vega vega-lite altair

在下图中,观察从Chart.save()到HTML或JSON画布的地图周围的边框(边框在画布内部,而不是CSS样式)。

enter image description here

对于任何其他类型的标记,人们希望能够使用Chart.configure_view()设置strokeWidth=0来删除边框,但这似乎不会影响此几何形状图表。

vegaEmbed embed options似乎没有记录造成此边框的原因。

是否可以设置边框样式或删除边框?

1 个答案:

答案 0 :(得分:2)

删除边框的方法是使用configure_view(strokeWidth=0)

这里是一个示例,使用最新版本的Altair和最新版本的Vega-Lite:

import altair as alt
from vega_datasets import data

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

alt.Chart(counties).mark_geoshape().encode(
    color='rate:Q'
).transform_lookup(
    lookup='id',
    from_=alt.LookupData(source, 'id', ['rate'])
).project(
    type='albersUsa'
).configure_view(
    strokeWidth=0
)

enter image description here

如果您看到不同的结果,则可能是前端渲染器已过期,因此应确保您使用的是最新版本的Vega-Lite来渲染图表。