UNPKG

@swimlane/ngx-charts

Version:

Declarative Charting Framework for Angular

73 lines (72 loc) 2.18 kB
import { EventEmitter, TemplateRef } from '@angular/core'; import { ViewDimensions } from '../common/view-dimensions.helper'; import { ColorHelper } from '../common/color.helper'; import { BaseChartComponent } from '../common/base-chart.component'; export declare class BarVerticalNormalizedComponent extends BaseChartComponent { legend: boolean; legendTitle: string; legendPosition: string; xAxis: any; yAxis: any; showXAxisLabel: any; showYAxisLabel: any; xAxisLabel: any; yAxisLabel: any; tooltipDisabled: boolean; gradient: boolean; showGridLines: boolean; activeEntries: any[]; schemeType: string; trimXAxisTicks: boolean; trimYAxisTicks: boolean; rotateXAxisTicks: boolean; maxXAxisTickLength: number; maxYAxisTickLength: number; xAxisTickFormatting: any; yAxisTickFormatting: any; xAxisTicks: any[]; yAxisTicks: any[]; barPadding: number; roundDomains: boolean; noBarWhenZero: boolean; activate: EventEmitter<any>; deactivate: EventEmitter<any>; tooltipTemplate: TemplateRef<any>; dims: ViewDimensions; groupDomain: any[]; innerDomain: any[]; valueDomain: any[]; xScale: any; yScale: any; transform: string; colors: ColorHelper; margin: number[]; xAxisHeight: number; yAxisWidth: number; legendOptions: any; update(): void; getGroupDomain(): any[]; getInnerDomain(): any[]; getValueDomain(): number[]; getXScale(): any; getYScale(): any; groupTransform(group: any): string; onClick(data: any, group?: any): void; trackBy(index: any, item: any): any; setColors(): void; getLegendOptions(): { scaleType: string; colors: any; domain: any[]; title: any; position: string; }; updateYAxisWidth({ width }: { width: any; }): void; updateXAxisHeight({ height }: { height: any; }): void; onActivate(event: any, group: any, fromLegend?: boolean): void; onDeactivate(event: any, group: any, fromLegend?: boolean): void; }