@tusharghoshbd/ngx-charts
Version:
Ngx charts is an angular library for presenting data in chart.
20 lines (19 loc) • 626 B
TypeScript
import { OnInit, OnChanges, AfterViewInit, EventEmitter, ElementRef, SimpleChanges } from '@angular/core';
export declare class XAxisComponent implements OnInit, OnChanges, AfterViewInit {
xScale: any;
yScale: any;
options: any;
categories: any;
series: any;
xAxisHeightEl: ElementRef;
xAxisHeightChange: EventEmitter<{}>;
ticks: any[];
trimLabel: any;
constructor();
ngOnChanges(changes: SimpleChanges): void;
ngOnInit(): void;
ngAfterViewInit(): void;
update(): void;
xTransformRotate(item: any): string;
pathDirection(tick: any): string;
}