UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

11 lines 424 B
import { type SeriesId } from "../../models/seriesType/common.mjs"; import { type BarLabelFunction } from "./BarLabel.types.mjs"; import { type BarValueType } from "../../models/seriesType/bar.mjs"; export declare function getBarLabel(options: { barLabel: 'value' | BarLabelFunction; value: BarValueType | null; dataIndex: number; seriesId: SeriesId; height: number; width: number; }): string | null | undefined;