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