Files
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

10 lines
338 B
TypeScript

import { SeriesId } from "../../models/seriesType/common.js";
import { BarLabelFunction } from "./BarLabel.types.js";
export declare const getBarLabel: (options: {
barLabel: "value" | BarLabelFunction;
value: number | null;
dataIndex: number;
seriesId: SeriesId;
height: number;
width: number;
}) => string | null | undefined;