How to remove the carousel indicator dots from ion-slide-box?

The sample code at the below link generates a carousel with indicator dots (unlike the gif shown). Is there a way to remove those dots?
http://ionicframework.com/docs/api/directive/ionSlideBox/

Did you try the “show-pager” property from the page you linked to?

2 Likes

that worked, thanks!

To remove indicator when only one slide is there, Use this in your css:

.slider-pager-page:only-of-type{ display:none; }

1 Like

it worked thanks buddy