UNPKG

@swimlane/ngx-charts

Version:

Declarative Charting Framework for Angular

38 lines (37 loc) 1.04 kB
import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core'; import { YAxisTicksComponent } from './y-axis-ticks.component'; export declare class YAxisComponent implements OnChanges { yScale: any; dims: any; trimTicks: boolean; maxTickLength: number; tickFormatting: any; ticks: any[]; showGridLines: boolean; showLabel: any; labelText: any; yAxisTickInterval: any; yAxisTickCount: any; yOrient: string; referenceLines: any; showRefLines: any; showRefLabels: any; yAxisOffset: number; dimensionsChanged: EventEmitter<{}>; yAxisClassName: string; tickArguments: any; offset: any; transform: any; labelOffset: number; fill: string; stroke: string; tickStroke: string; strokeWidth: number; padding: number; ticksComponent: YAxisTicksComponent; ngOnChanges(changes: SimpleChanges): void; update(): void; emitTicksWidth({ width }: { width: any; }): void; }