UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

14 lines 543 B
import { TickItemType } from "../hooks/useTicks.js"; import { ChartsXAxisProps, ComputedXAxis } from "../models/axis.js"; export declare function getVisibleLabels(xTicks: TickItemType[], { tickLabelStyle: style, tickLabelInterval, tickLabelMinGap, reverse, isMounted, isXInside }: Pick<ChartsXAxisProps, 'tickLabelInterval' | 'tickLabelStyle'> & Pick<ComputedXAxis, 'reverse'> & { isMounted: boolean; tickLabelMinGap: NonNullable<ChartsXAxisProps['tickLabelMinGap']>; isXInside: (x: number) => boolean; }): Set<TickItemType>;