@mui/x-charts
Version:
The community edition of MUI X Charts components.
13 lines • 410 B
TypeScript
import * as React from 'react';
import type { CompletedBarData } from "../types.js";
import { BarLabelItemProps } from "./BarLabelItem.js";
type BarLabelPlotProps = {
bars: CompletedBarData[];
skipAnimation?: boolean;
barLabel?: BarLabelItemProps['barLabel'];
};
/**
* @ignore - internal component.
*/
declare function BarLabelPlot(props: BarLabelPlotProps): React.JSX.Element;
export { BarLabelPlot };