UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

12 lines 432 B
import * as React from 'react'; import { 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): React.JSX.Element | null; export {};