@mui/x-charts
Version:
The community edition of MUI X Charts components.
11 lines • 427 B
TypeScript
import { type PiecewiseColorConfig } from "../../../models/colorMapping.js";
type ChartsPiecewiseGradientProps = {
isReversed?: boolean;
gradientId: string;
size: number;
direction: 'x' | 'y';
scale: (value: any) => number | undefined;
colorMap: PiecewiseColorConfig;
};
export default function ChartsPiecewiseGradient(props: ChartsPiecewiseGradientProps): import("react/jsx-runtime").JSX.Element | null;
export {};