File

src/module/chart-legend/chart-legend.component.ts

Implements

OnInit

Metadata

selector chart-legend
styleUrls chart-legend.component.scss
templateUrl ./chart-legend.component.html

Index

Methods
Inputs

Constructor

constructor()

Inputs

keys

Type: LegendKey[]

Methods

ngOnInit
ngOnInit()
Returns : void
import {Component, Input, OnInit} from '@angular/core';
import { LegendKey } from './../../types';

@Component({
  selector: 'chart-legend',
  templateUrl: './chart-legend.component.html',
  styleUrls: ['./chart-legend.component.scss']
})
export class ChartLegendComponent implements OnInit {

  @Input()
  public keys: LegendKey[] = [];

  constructor() { }

  ngOnInit() {
  }

}
<div *ngFor="let key of keys" class="key">
  <div class="key__colour" [style.background-color]="key.colour"></div>
  <span class="key__label">{{key.label}}</span>
</div>
Legend
Html element
Component
Html element with directive

results matching ""

    No results matching ""