@mui/x-charts
Version:
The community edition of MUI X Charts components.
10 lines • 521 B
TypeScript
/**
* Higher order function that transform a `getLabelTransform` to the <text /> anchor props.
*/
export declare const createGetLabelTextAnchors: (getLabelTransform: (px: number, py: number, tickLabelPosition: "center" | "after" | "before") => {
verticalAlign: "start" | "middle" | "end";
horizontalAlign: "start" | "middle" | "end";
}) => (px: number, py: number, tickLabelPosition: "center" | "after" | "before") => {
textAnchor: "start" | "middle" | "end";
dominantBaseline: "hanging" | "middle" | "auto";
};