@[toc]
报错
charts5.js:7169 [ECharts] DEPRECATED: 'normal' hierarchy in itemStyle has been removed since 4.0. All style properties are configured in itemStyle directly now.虎康11月19日 16:51
分析
echarts写法发生了变化
解决
修改前
itemStyle: { normal: { lineStyle:{ width:3, } } },
修改后无警告信息了
itemStyle: { lineStyle:{ width:3, } },