Due to the migration guide, Angular Material 15 no longer supports vertical/inverted sliders:

In my case, I need the vertical inverted slider because it represents some kind of roller. So it is not possible to just use a "normal" slider.

Is there a way to also get a vertical inverted slider with Angular Material 15? Or does someone know a similar component?

1 Answer

You can still import old slider from a "legacy" import

import {MatLegacySliderModule } from '@angular/material/legacy-slider'; 
4

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge that you have read and understand our privacy policy and code of conduct.