andrucz / ionic2-rating

:star: Angular star rating bar. Built for Ionic 2+.
MIT License
178 stars 62 forks source link

need a rating bar properties #20

Closed vishaltechreceptives closed 7 years ago

vishaltechreceptives commented 7 years ago

Hello,

rating bar in i want full star means if i click 1 star it's rating is 1. need 1 rating for 1 star. is it possible? any document for that?

andrucz commented 7 years ago

Hello, @vishaltechreceptives Sorry for the late response. Do you mean a rating bar with only one star? The "max" property defines how many stars should be displayed.

andrucz commented 7 years ago

This is an example of a component that declares all available properties.

<rating [(ngModel)]="rate" 
        readOnly="false"
        max="5"
        emptyStarIconName="star-outline"
        halfStarIconName="star-half"
        starIconName="star"
        nullable="false"
        (ngModelChange)="onModelChange($event)">
</rating>