-
Notifications
You must be signed in to change notification settings - Fork 19.8k
Closed
Labels
difficulty: easyIssues that can be fixed more easily than the average.Issues that can be fixed more easily than the average.enThis issue is in EnglishThis issue is in Englishnew-featuretopic: axis
Description
Version
5.5.0
Link to Minimal Reproduction
Steps to Reproduce
here is the configuration to reproduce the issue:
option = {
xAxis: {
type: 'category',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
splitLine: {
show: true,
lineStyle:{
color:'blue'
}
}
},
yAxis: {
type: 'value',
axisLine: {
show:true,
lineStyle: {
color: 'rgba(255,100,0,0.8)',
width:12
}
}
},
series: [
{
data: [150, 230, 224, 218, 135, 147, 260],
type: 'line'
}
]
};
Current Behavior
while splitline attr in xAxis options and axisLine atrr in yAxis options set concurrently, two lines from each other overlapper in the position where yAxis axisline lies.
Expected Behavior
provide a way to hidden the line of splitLine in the position where yAxais lies
Environment
- Browser:
Any additional comments?
No response
Metadata
Metadata
Assignees
Labels
difficulty: easyIssues that can be fixed more easily than the average.Issues that can be fixed more easily than the average.enThis issue is in EnglishThis issue is in Englishnew-featuretopic: axis