@lowcodeunit/lcu-charts-common
Version:
A Charting and Graphing Library based on and influenced by Ngx-charts
80 lines • 2.34 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 BarHorizontalSimpleComponent 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;
roundEdges: boolean;
xScaleMax: number;
xScaleMin: number;
showDataLabel: boolean;
dataLabelFormatting: any;
noBarWhenZero: boolean;
activate: EventEmitter<any>;
deactivate: EventEmitter<any>;
tooltipTemplate: TemplateRef<any>;
dims: ViewDimensions;
yScale: any;
xScale: any;
xDomain: any;
yDomain: any;
transform: string;
colors: ColorHelper;
margin: number[];
xAxisHeight: number;
yAxisWidth: number;
legendOptions: any;
dataLabelMaxWidth: any;
update(): void;
getXScale(): any;
getYScale(): any;
getXDomain(): any[];
getYDomain(): any[];
onClick(data: any): void;
setColors(): void;
getLegendOptions(): any;
updateYAxisWidth({ width }: any): void;
updateXAxisHeight({ height }: any): void;
onDataLabelMaxWidthChanged(event: {
size: {
negative: any;
width: number;
};
index: number;
}): void;
onActivate(item: {
name: any;
value: any;
series: any;
}, fromLegend?: boolean): void;
onDeactivate(item: {
name: any;
value: any;
series: any;
}, fromLegend?: boolean): void;
}
//# sourceMappingURL=bar-horizontal-simple.component.d.ts.map