UNPKG

@nova-ui/charts

Version:

Nova Charts is a library created to provide potential consumers with solutions for various data visualizations that conform with the Nova Design Language. It's designed to solve common patterns identified by UX designers, but also be very flexible so that

38 lines (37 loc) 1.63 kB
import { EventEmitter, OnChanges, OnDestroy, SimpleChanges } from "@angular/core"; import { LegendOrientation } from "./types"; import * as i0 from "@angular/core"; export declare class LegendComponent implements OnChanges, OnDestroy { /** * EventEmitter for notifying subscribers of a change in the active state */ activeChanged: EventEmitter<boolean>; /** * The active state */ active: boolean; /** * The legend's interactive mode switch */ interactive: boolean; /** * The legend's orientation */ orientation: LegendOrientation; /** * The legend's overall series color. Individual legend series may override this. */ seriesColor: string; /** * The legend's overall series icon. Individual legend series may override this. */ seriesIcon: string; /** * The legend's overall series unit label. Individual legend series may override this. */ seriesUnitLabel: string; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration<LegendComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<LegendComponent, "nui-legend", never, { "active": { "alias": "active"; "required": false; }; "interactive": { "alias": "interactive"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "seriesColor": { "alias": "seriesColor"; "required": false; }; "seriesIcon": { "alias": "seriesIcon"; "required": false; }; "seriesUnitLabel": { "alias": "seriesUnitLabel"; "required": false; }; }, {}, never, ["*"], false, never>; }