@mui/x-charts
Version:
The community edition of MUI X Charts components.
12 lines • 481 B
text/typescript
import type { BarItemIdentifier } from "../../models/index.mjs";
import { type IndividualBarPlotProps } from "../IndividualBarPlot.mjs";
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 {};