@alauda-fe/common
Version:
Alauda frontend team common codes.
29 lines (28 loc) • 1.58 kB
TypeScript
import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
import { ContextChartService } from '../../chart.service';
import * as i0 from "@angular/core";
export declare class YAxisComponent implements OnInit, OnDestroy {
readonly context: ContextChartService;
private readonly cdr;
title: string;
align: 'low' | 'middle' | 'high';
labelOffsetX: number;
labelOffsetY: number;
intervalWidth: number;
tickSuffix: string;
max: number;
min: number;
titleStyle: {
[key: string]: any;
};
rotation: number;
INTERVAL_WIDTH: number;
transform: string;
private readonly destroy$$;
get view(): import("../../types").ChartView;
constructor(context: ContextChartService, cdr: ChangeDetectorRef);
ngOnInit(): void;
ngOnDestroy(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<YAxisComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<YAxisComponent, "g[aclYAxis]", never, { "title": { "alias": "title"; "required": false; }; "align": { "alias": "align"; "required": false; }; "labelOffsetX": { "alias": "labelOffsetX"; "required": false; }; "labelOffsetY": { "alias": "labelOffsetY"; "required": false; }; "intervalWidth": { "alias": "intervalWidth"; "required": false; }; "tickSuffix": { "alias": "tickSuffix"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "titleStyle": { "alias": "titleStyle"; "required": false; }; "rotation": { "alias": "rotation"; "required": false; }; }, {}, never, never, false, never>;
}