ecomfe / echarts-wordcloud

Word Cloud extension based on Apache ECharts and wordcloud2.js
1.62k stars 707 forks source link

grid 配置不生效 #131

Open Atlas-lili opened 2 years ago

Atlas-lili commented 2 years ago

版本

echarts 5.1.1 echarts-wordcloud 2.0.0

复现步骤

将wordcloud的配置与grid同时使用

const chart = echarts.init(view, { renderer: "canvas" });
chart.setOption({
  // not work
  grid: {
    top: 100,
    left: 100
  }
  series: [{
    type: "wordCloud",
    // ...
    data: [{name: '词条1', value: 100}]
  }]
}, true);

现象

grid无法限制词云边距

期望

希望可以通过grid限制边距。 为什么没用series.left? 我希望设置词云边距同时left为center保持在指定区域内居中绘制

示例

https://codesandbox.io/s/charming-haslett-u4sx2?file=/src/components/HelloWorld.vue