ngu-carousel implementation with angular 7

Viewed 2152

searching for a good non-jQuery carousel for angular i found ngu-carousel but trying to use it in angular 7 you might face some problems which will hopefully be dealt with in next versions but for now here are some search results i would like to share to help you speed up.

some errors you might see:

Cannot read property 'all' of undefined ngu slider

Generic type 'NguCarousel' requires 1 type argument(s)

the latest version is 1.5.4 at the time i'm posting this.

1 Answers

as in this issue owner has provided a sample which is almost working! just change this line

  @ViewChild('myCarousel') myCarousel: NguCarousel;

to this

  @ViewChild('myCarousel') myCarousel: NguCarousel<any>;

and for rtl users, make sure you put the carousel in a ltr container

Related