test link: https://microsoft.github.io/monaco-editor/index.html
The feature I want is as shown below:

Thank you for viewing and look forward to your reply馃グ
I think on changing alwaysConsumeMouseWheel value to false, You might get what you want.
https://microsoft.github.io/monaco-editor/api/interfaces/monaco.editor.ieditorscrollbaroptions.html#alwaysconsumemousewheel
I think on changing
alwaysConsumeMouseWheelvalue to false, You might get what you want.
https://microsoft.github.io/monaco-editor/api/interfaces/monaco.editor.ieditorscrollbaroptions.html#alwaysconsumemousewheel
I tried it without success. My method of use is shown below:

Take a look at this comment here
So I guess you have to do it this way,
this.diffEditor = monaco.editor.createDiffEditor(
document.getElementById('diff-editor'), {
scrollbar: {
alwaysConsumeMouseWheel: false
}
});
Take a look at this comment here
So I guess you have to do it this way,
this.diffEditor = monaco.editor.createDiffEditor( document.getElementById('diff-editor'), { scrollbar: { alwaysConsumeMouseWheel: false } });
Wu~~~ It's work! Thank you very much! 馃尮
Most helpful comment
Take a look at this comment here
So I guess you have to do it this way,