UNPKG

571 BTypeScriptView Raw
1import { ElementRef, OnChanges, SimpleChanges } from '@angular/core';
2import { Orientation } from '../types/orientation.enum';
3export declare class AxisLabelComponent implements OnChanges {
4 orient: Orientation;
5 label: string;
6 offset: number;
7 width: number;
8 height: number;
9 x: number;
10 y: number;
11 transform: string;
12 strokeWidth: string;
13 textAnchor: string;
14 element: ElementRef;
15 textHeight: number;
16 margin: number;
17 constructor(element: ElementRef);
18 ngOnChanges(changes: SimpleChanges): void;
19 update(): void;
20}