@swimlane/ngx-charts
Version:
Declarative Charting Framework for Angular
24 lines (23 loc) • 1.08 kB
TypeScript
import { ElementRef, OnChanges, SimpleChanges } from '@angular/core';
import { Orientation } from '../types/orientation.enum';
import * as i0 from "@angular/core";
export declare class AxisLabelComponent implements OnChanges {
orient: Orientation;
label: string;
offset: number;
width: number;
height: number;
x: number;
y: number;
transform: string;
strokeWidth: string;
textAnchor: string;
element: ElementRef;
textHeight: number;
margin: number;
constructor(element: ElementRef);
ngOnChanges(changes: SimpleChanges): void;
update(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<AxisLabelComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<AxisLabelComponent, "g[ngx-charts-axis-label]", never, { "orient": { "alias": "orient"; "required": false; }; "label": { "alias": "label"; "required": false; }; "offset": { "alias": "offset"; "required": false; }; "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; }, {}, never, never, false, never>;
}