@mui/x-charts
Version:
The community edition of MUI X Charts components.
12 lines • 479 B
TypeScript
import type { BarItemIdentifier } from "../../models/index.js";
import { type IndividualBarPlotProps } from "../IndividualBarPlot.js";
interface BatchBarPlotProps extends Omit<IndividualBarPlotProps, 'onItemClick'> {
onItemClick?: (event: MouseEvent, barItemIdentifier: BarItemIdentifier) => void;
}
export declare function BatchBarPlot({
completedData,
borderRadius,
onItemClick,
skipAnimation
}: BatchBarPlotProps): import("react/jsx-runtime").JSX.Element;
export {};