UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

28 lines 695 B
import { type ChartsAxisSlotProps, type ChartsAxisSlots } from "../models/axis.js"; export type { ChartsAxisSlots, ChartsAxisSlotProps }; export interface ChartsAxisProps { /** * Overridable component slots. * @default {} */ slots?: ChartsAxisSlots; /** * The props used for each component slot. * @default {} */ slotProps?: ChartsAxisSlotProps; } /** * Demos: * * - [Axis](https://mui.com/x/react-charts/axis/) * * API: * * - [ChartsAxis API](https://mui.com/x/api/charts/charts-axis/) */ declare function ChartsAxis(props: ChartsAxisProps): import("react/jsx-runtime").JSX.Element; declare namespace ChartsAxis { var propTypes: any; } export { ChartsAxis };