词云遮盖echarts 配置项内容和展示

口字会遮盖比它值小的词

配置项如下
      option = {
  "grid": {
    "top": "0",
    "right": "0",
    "bottom": "0",
    "left": "0",
    "containLabel": true
  },
  "tooltip": {
    "trigger": "item",
    "backgroundColor": "rgba(0,0,0,0.8)",
    "borderColor": "transparent"
  },
  "series": [
    {
      "type": "wordCloud",
      "sizeRange": [
        16,
        64
      ],
      "rotationRange": [
        0,
        0
      ],
      "rotationStep": 0,
      "gridSize": 8,
      "shape": "circle",
      "left": "center",
      "top": "center",
      "width": "100%",
      "height": "100%",
      "drawOutOfBound": false,
      "data": [
        {
          "name": "口",
          "value": 10.1
        },
        {
          "name": "口",
          "value": 10
        },
      ],
      "textStyle": {
        "normal": {}
      }
    }
  ]
}
    
截图如下