[ECharts] DEPRECATED: itemStyle.normal.lineStyle is deprecated, use lineStyle instead.
"normal hierarchy in lineStyle has been removed since 40. All style properties are configured in linestyle directly now.
错误写法
itemStyle: {
normal: {
lineStyle: { //设置折线样式
width: 2, //折线宽度
color: 'rgba(72, 233, 255, 1)', //折线颜色
}
},
},
正确写法:把lineStyle移动到外层和itemStyle同级
lineStyle: { //设置折线样式
width: 2, //折线宽度
color: 'rgba(235,156,54,1)', //折线颜色
},
itemStyle: {
},