UNPKG

741 BTypeScriptView Raw
1import { OnChanges, SimpleChanges, ElementRef, EventEmitter } from '@angular/core';
2import { BarOrientation } from '../common/types/bar-orientation.enum';
3export declare class BarLabelComponent implements OnChanges {
4 value: any;
5 valueFormatting: any;
6 barX: any;
7 barY: any;
8 barWidth: any;
9 barHeight: any;
10 orientation: BarOrientation;
11 dimensionsChanged: EventEmitter<any>;
12 element: any;
13 x: number;
14 y: number;
15 horizontalPadding: number;
16 verticalPadding: number;
17 formatedValue: string;
18 transform: string;
19 textAnchor: string;
20 constructor(element: ElementRef);
21 ngOnChanges(changes: SimpleChanges): void;
22 getSize(): any;
23 ngAfterViewInit(): void;
24 update(): void;
25}