UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

11 lines 443 B
import type { ChartsXAxisProps } from "../models/axis.mjs"; import type { OrdinalTimeTicks } from "../models/timeTicks.mjs"; interface ChartsSingleXAxisProps extends ChartsXAxisProps { axisLabelHeight: number; ordinalTimeTicks?: OrdinalTimeTicks; } /** * @ignore - internal component. */ declare function ChartsSingleXAxisTicks(inProps: ChartsSingleXAxisProps): import("react/jsx-runtime").JSX.Element; export { ChartsSingleXAxisTicks };