Angular ApacheEcharts:标签、分割线在极坐标条形图的半径轴上消失

Angular ApacheEcharts:标签、分割线在极坐标条形图的半径轴上消失,angular,echarts,ngx-echarts,Angular,Echarts,Ngx Echarts,使用 第4.9条, ngx echarts 4.2.2 在缩放过程中,径向轴中的标签、轴线有时会消失。悬停期间的工具提示也会以不同的方式显示 不正确的图表 正确的图表 选项值设置 options = { "color": [ "#32C5E9" ], "legend": { "type": "scroll", "orient": &qu

使用 第4.9条, ngx echarts 4.2.2

在缩放过程中,径向轴中的标签、轴线有时会消失。悬停期间的工具提示也会以不同的方式显示

不正确的图表 正确的图表

选项值设置

   options = {
  "color": [
    "#32C5E9"
  ],
  "legend": {
    "type": "scroll",
    "orient": "vertical",
    "bottom": 0,
    "right": 0,
    "data": []
  },
  "angleAxis": {
    "show": true,
    "splitArea": {
      "show": false
    },
    "splitLine": {
      "show": true
    },
    "axisLine": {
      "show": false
    },
    "axisTick": {
      "show": false
    }
  },
  "radiusAxis": {
    "show": true,
    "type": "category",
    "data": ["Machines","Phones","Chairs","Tables", "Storage", "Binders","Accessories","Bookcases", 
     "Furnishings","Copiers","Appliances","Paper","Art","Supplies","Envelopes"],
    "z": 10,
    "splitLine": {
      "show": true
    },
    "axisLabel": {
      "rotate": 45
    }
  },
  "polar": {},
  "dataZoom": [
    {
      "show": false
    }
  ],
  "tooltip": {
    "trigger": "axis",
    "axisPointer": {
      "type": "shadow",
      "label": {
        "backgroundColor": "#6a7985"
      }
    }
  },
  "series": [
    {
      "name": "All",
      "data": ["32622.1", "31036.5", "30809.1","24476.6","21809.6","21412.5","20481.4","13835.0", "10223.8","9359.8","8369.9","6386.2","3858.1","2391.6","2109.3"],
      "type": "bar",
      "coordinateSystem": "polar",
      "barMaxWidth": 20,
      "itemStyle": {
        "shadowColor": "rgba(0,0,0,0.2)",
        "shadowBlur": 5,
        "shadowOffsetX": 5
      }
    }
  ]
}
对于不同的数据集,有时也会出现相同的问题