-
Notifications
You must be signed in to change notification settings - Fork 19.8k
[Bug] dataZoom bar does not have overflow: hidden property #21428
Copy link
Copy link
Open
Description
Version
6.0.0
Link to Minimal Reproduction
Steps to Reproduce
Run any chart example, enable the dataZoom with the chart options, apply the borderRadius parameter like I did in the following example
Current Behavior
The dataZoom bar must include the overflow: hidden in its styling tags because If you set the borderRadius everything will overflow and look ugly.
dataZoom: [
{
id: 'dataZoomXslider',
type: 'slider',
height: 35,
bottom: 7,
xAxisIndex: [0],
filterMode: 'filter',
showDataShadow: false,
backgroundColor: 'blue',
fillerColor: "red",
borderColor: "var(--muted-foreground)",
borderRadius: 10, // < -----
handleStyle: {
borderWidth: 0
}
},
{
id: 'dataZoomXinside',
type: 'inside',
xAxisIndex: [0],
filterMode: 'filter',
zoomOnMouseWheel: true,
moveOnMouseMove: true,
moveOnMouseWheel: false,
},
],
Expected Behavior
Just add the the overflow: hidden styling property to the parent element
Environment
- OS: MacOS
- Browser: Chrome
- Framework: React TS (https://www.npmjs.com/package/echarts-for-react)Any additional comments?
No response
Reactions are currently unavailable