UNPKG

@carbon/charts

Version:
19 lines (18 loc) 632 B
import { Bar } from './bar'; import { ScaleBand } from 'd3-scale'; export declare class GroupedBar extends Bar { type: string; groupScale: ScaleBand<any>; padding: number; init(): void; render(animate: boolean): void; handleLegendOnHover: (event: CustomEvent<any>) => void; handleLegendMouseOut: (event: CustomEvent<any>) => void; addEventListeners(): void; destroy(): void; protected getDataCorrespondingToLabel(label: string): any; protected getGroupWidth(): number; protected getTotalGroupPadding(): number; protected getBarWidth(): any; protected setGroupScale(): void; }