# Add stars to tiles' title

### Tile’s staring

This is how you can display stars in the widget name using the ‘stars’ filter.

{% hint style="warning" %}
**Warning**

For now, the available widgets are:

* value-dynamic
* score-card
* leaderboard

Please see the tile’ specific documentation for more info on how to use this feature.
{% endhint %}

<figure><img src="https://1809014303-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FZxYYf1KpgarKMgMsDCrw%2Fuploads%2Fgit-blob-7ff726ddb6b0ea2beda41fcb1477c197919ce21a%2Fstars_rating_filter.png?alt=media" alt="Example of widget with stars"><figcaption><p>Example of widget with stars</p></figcaption></figure>

### Configuration

In some tiles, you can display a value between 0 and 1 (percentage for instance), as stars next to the tile’s title.

Usually in places where you can use templating, you can use the `stars` method. The value should be between 0 and 1:

```html
<$= stars(my_dataset.column) $>
```

{% hint style="info" %}
**Note**

This does not work if you’ve set precision to convert your value into %. Instead, use the syntax : *<$= stars(my\_dataset.column/100) $>*
{% endhint %}

###
