unicorn-components
Version:
<a target="_blank" href="https://getunicorn.io"><img src="https://bitbucket-assetroot.s3.amazonaws.com/c/photos/2017/Jul/07/2615006260-5-nitsnetsstudios-ondemand-UNI_avatar.png" align="left"></a>
11 lines (10 loc) • 447 B
HTML
<div class="uni-chart-legend__container" [class.uni-chart-legend__container--editable]="editable">
<div class="uni-chart-legend__item"
*ngFor="let serie of series; let i = index"
(click)="toggleItem(i)"
[class.uni-chart-legend__item--inactive]="serie.inactive"
>
<span class="uni-chart-legend__color" [style.background-color]="arrToRgba(colors[i])"></span>
<span class="uni-chart-legend__label"> {{serie.label}} </span>
</div>
</div>