如何在 Vega 中隐藏操作按钮

How to hide the action button in Vega

我使用 vega-react,我想知道不在图表上显示“操作”按钮的最简单方法。

如果我将所有操作声明为 false,它不会显示任何操作,但按钮仍然存在。

<Vega spec={spec as VisualizationSpec} data={barData} actions={{
                   export: false,
                   source: false,
                   compiled: false,
                   editor: false,
               }}  />

vega-embed 文档中所述,actions 设置可以是对象或布尔值,并且与您的问题相关:

If the value is true, all action links will be shown and none if the value is false

所以我相信你想要的是actions=false