cl-react-graph
Version:
React D3 Charts
19 lines (18 loc) • 664 B
TypeScript
import { EChartDirection } from "../BarChart";
import { ColorScheme } from "../utils/colorScheme";
import { ExtendedGroupItem } from "./Bars/Bars";
import { TLabelComponent } from "./Label";
type Props = {
colorScheme?: ColorScheme;
direction: EChartDirection;
items: ExtendedGroupItem[];
LabelComponent?: TLabelComponent;
labels?: string[];
showLabels?: boolean[];
springs: any[];
visible?: Record<string, boolean>;
inverse?: boolean;
width: number;
};
export declare const Labels: ({ colorScheme, springs, items, direction, labels, LabelComponent, showLabels, visible, inverse, width, }: Props) => JSX.Element;
export {};