-
Notifications
You must be signed in to change notification settings - Fork 19.8k
Image symbol disappeared after legend selection is toggled in line series. #9718
Copy link
Copy link
Closed
Description
使用symbol进行自定义拐点图片时,添加图例后试用图例控制折线图的显示隐藏后,在第一次显示自定义图片后,后面不再显示
option = {
tooltip : {
trigger: 'axis',
},
legend: {
data:['邮件营销']
},
xAxis: {
type: 'category',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
},
yAxis: {
type: 'value'
},
series: [{
name:'邮件营销',
data: [120, 200, 150, 80, 70, 110, 130],
type: 'line',
symbol: 'image://https://www.skytk.cn/wp-content/uploads/2018/06/fac.png',
symbolSize: 20,
lineStyle: {
normal: {
color: 'green',
width: 4,
type: 'dashed'
}
},
itemStyle: {
normal: {
borderWidth: 3,
borderColor: 'yellow',
color: 'blue'
}
}
}]
};Reactions are currently unavailable

