@mui/x-charts
Version:
The community edition of MUI X Charts components.
11 lines • 443 B
text/typescript
import type { ChartsYAxisProps } from "../models/axis.mjs";
import type { OrdinalTimeTicks } from "../models/timeTicks.mjs";
interface ChartsSingleYAxisProps extends ChartsYAxisProps {
axisLabelHeight: number;
ordinalTimeTicks?: OrdinalTimeTicks;
}
/**
* @ignore - internal component.
*/
declare function ChartsSingleYAxisTicks(inProps: ChartsSingleYAxisProps): import("react/jsx-runtime").JSX.Element;
export { ChartsSingleYAxisTicks };