-
Notifications
You must be signed in to change notification settings - Fork 19.8k
Symbols don't render right in clip mode #11549
Copy link
Copy link
Closed
Labels
Description
Version
4.4.0
Reproduction link
https://jsfiddle.net/qraz7vxu/
Steps to reproduce
option = {
grid: {
top: 130,
bottom: 80
},
dataZoom: [{
type: 'slider',
show: true
},
{
type: 'inside'
}
],
xAxis: {
type: 'category',
name: 'x',
splitLine: {
show: false
},
data: ['1', '2', '3', '4', '5', '6', '7', '9', '9'],
axisPointer: {
show: 'true'
},
},
yAxis: {
name: 'y',
max: 20
},
tooltip: {
trigger: 'item'
},
series: [{
name: 'B',
type: 'line',
clip: false,
data: [1, 2, 4, 8, 16, 32, 64, 128, 256]
}]
};
What is expected?
Symbol outside clip area should be rendered.
What is actually happening?
Reactions are currently unavailable
