BSPR0002 opened a new issue, #20646:
URL: https://github.com/apache/echarts/issues/20646
### What problem does this feature solve?
dataZoom-inside 配置项的 moveOnMouseWheel、moveOnMouseMove、zoomOnMouseWheel
选项如果设置为了 true,在按下 ctrl、shift、alt 时仍会触发,导致与其他配置了特定功能键的鼠标操作冲突
### What does the proposed API look like?
希望为 moveOnMouseWheel、moveOnMouseMove、zoomOnMouseWheel 添加仅在未按下功能键时触发的选项,例如:
```javascript
chart.setOption({
dataZoom: [{
type: "inside",
zoomOnMouseWheel: "no-function-key"
}]
})
`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]