UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

11 lines 427 B
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 {};