| 123456 |
- import type { Text } from '../../../shapes';
- import { AxisStyleProps, WrapOverlapCfg } from '../types';
- export type Utils = {
- wrap: (label: Text, wordWrapWidth: number, maxLines?: number, textBaseline?: string) => void;
- };
- export default function wrapLabels(labels: Text[], overlapCfg: WrapOverlapCfg, attr: AxisStyleProps, utils: Utils): void;
|