@mui/x-charts
Version:
The community edition of MUI X Charts components.
11 lines • 421 B
TypeScript
import { type SeriesId } from "../../models/seriesType/common.js";
import { type BarLabelFunction } from "./BarLabel.types.js";
import { type BarValueType } from "../../models/seriesType/bar.js";
export declare function getBarLabel(options: {
barLabel: 'value' | BarLabelFunction;
value: BarValueType | null;
dataIndex: number;
seriesId: SeriesId;
height: number;
width: number;
}): string | null | undefined;