@mui/x-charts
Version:
The community edition of MUI X Charts components.
10 lines • 367 B
TypeScript
import { ComputedAxis } from "../models/axis.js";
import { ZAxisDefaultized } from "../models/z-axis.js";
import { ColorLegendSelector } from "./colorLegend.types.js";
/**
* Helper to select an axis definition according to its direction and id.
*/
export declare function useAxis({
axisDirection,
axisId
}: ColorLegendSelector): ZAxisDefaultized | ComputedAxis;