Regarding the Apexcharts chart zoom in/out functionality. How do you disable zoom when the pointer hovers over the graph and the mouse wheel is used, while still maintaining the click and select area zoom capabilities?
chart: {
zoom: {
enabled: true,
type: 'x',
autoScaleYaxis: false,
zoomedArea: {
fill: {
color: '#90CAF9',
opacity: 0.4
},
stroke: {
color: '#0D47A1',
opacity: 0.4,
width: 1
}
}
}
}