1

The issue was reproduced on IE11. Horizontal scroll axis appeared when I decreased scale. I tried to use suppressScrollX: true and useBothWheelAxes: false but it doesn't work.

How can I remove x axis on IE11 while scaling?

ame
  • 773
  • 9
  • 21

1 Answers1

1

I found the solution that works for me. However, using of suppressScrollX: true and useBothWheelAxes: false doesn't work, I removed x axis via CSS:

::ng-deep .ps--active-x > .ps__rail-x {
  display: none;
}
ame
  • 773
  • 9
  • 21
  • It seems that you have solved this problem. Congratulations! If you have any further question, it is better to post the Enough code to reproduce the problem as in [Minimal, Complete, and Verifiable example](https://stackoverflow.com/help/mcve). – Zhi Lv Oct 09 '19 at 15:41