UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

21 lines 773 B
import * as React from 'react'; import { type BarPlotSlotProps, type BarPlotSlots } from "./BarPlot.js"; import { type BarItemIdentifier } from "../models/index.js"; import { type MaskData, type ProcessedBarSeriesData } from "./types.js"; export interface IndividualBarPlotProps { completedData: ProcessedBarSeriesData[]; masksData: MaskData[]; borderRadius?: number; skipAnimation?: boolean; onItemClick?: (event: React.MouseEvent<SVGElement, MouseEvent>, barItemIdentifier: BarItemIdentifier) => void; slotProps?: BarPlotSlotProps; slots?: BarPlotSlots; } export declare function IndividualBarPlot({ completedData, masksData, borderRadius, onItemClick, skipAnimation, ...other }: IndividualBarPlotProps): import("react/jsx-runtime").JSX.Element;