@lowcodeunit/lcu-charts-common
Version:
A Charting and Graphing Library based on and influenced by Ngx-charts
86 lines • 2.55 kB
TypeScript
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 BarVerticalStackedComponent 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;
yScaleMax: number;
showDataLabel: boolean;
dataLabelFormatting: any;
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;
tickFormatting: (label: string) => string;
colors: ColorHelper;
margin: number[];
xAxisHeight: number;
yAxisWidth: number;
legendOptions: any;
dataLabelMaxHeight: any;
update(): void;
getGroupDomain(): any[];
getInnerDomain(): any[];
getValueDomain(): number[];
getXScale(): any;
getYScale(): any;
onDataLabelMaxHeightChanged(event: {
size: {
negative: any;
height: number;
};
}, groupIndex: number): void;
groupTransform(group: {
name: any;
}): string;
onClick(data: {
series: any;
}, group?: {
name: any;
}): void;
trackBy(index: any, item: {
name: any;
}): any;
setColors(): void;
getLegendOptions(): any;
updateYAxisWidth({ width }: any): void;
updateXAxisHeight({ height }: any): void;
onActivate(event: any, group: {
name: any;
}, fromLegend?: boolean): void;
onDeactivate(event: any, group: {
name: any;
}, fromLegend?: boolean): void;
}
//# sourceMappingURL=bar-vertical-stacked.component.d.ts.map