UNPKG

1.02 kBTypeScriptView Raw
1import { EventEmitter } from '@angular/core';
2import * as i0 from "@angular/core";
3export declare class LegendEntryComponent {
4 color: string;
5 label: string;
6 formattedLabel: string;
7 isActive: boolean;
8 select: EventEmitter<string>;
9 activate: EventEmitter<{
10 name: string;
11 }>;
12 deactivate: EventEmitter<{
13 name: string;
14 }>;
15 toggle: EventEmitter<string>;
16 get trimmedLabel(): string;
17 onMouseEnter(): void;
18 onMouseLeave(): void;
19 static ɵfac: i0.ɵɵFactoryDeclaration<LegendEntryComponent, never>;
20 static ɵcmp: i0.ɵɵComponentDeclaration<LegendEntryComponent, "ngx-charts-legend-entry", never, { "color": { "alias": "color"; "required": false; }; "label": { "alias": "label"; "required": false; }; "formattedLabel": { "alias": "formattedLabel"; "required": false; }; "isActive": { "alias": "isActive"; "required": false; }; }, { "select": "select"; "activate": "activate"; "deactivate": "deactivate"; "toggle": "toggle"; }, never, never, false, never>;
21}