-
Notifications
You must be signed in to change notification settings - Fork 19.8k
Open
ecomfe/zrender
#792Labels
SVGbugpendingWe are not sure about whether this is a bug/new feature.We are not sure about whether this is a bug/new feature.waiting-for: community
Milestone
Description
Version
5.1.2
Steps to reproduce
1.renderer设置为svg
2.正常设置折线图
3.折线图数据value值都为0
4.series中给lineStyle设置shadowoffset或shadowblue
A simple demo
option = {
xAxis: {
type: 'category',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
},
yAxis: {
type: 'value'
},
series: [{
data: [0, 0, 0, 0, 0, 0, 0],
type: 'line',
stack: true,
color: '#7f64ff',
symbol: 'none',
smooth: true,
lineStyle: {
shadowColor: 'red',
shadowBlur: 5,
shadowOffsetX: 0,
shadowOffsetY: 0
}
}]
};What is expected?
线条正常在底部显示
What is actually happening?
线条不显示
Metadata
Metadata
Assignees
Labels
SVGbugpendingWe are not sure about whether this is a bug/new feature.We are not sure about whether this is a bug/new feature.waiting-for: community



