@mui/x-charts
Version:
The community edition of the Charts components (MUI X).
13 lines (12 loc) • 442 B
TypeScript
import * as React from 'react';
import { PiecewiseColorConfig } from '../../../models/colorMapping';
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 {};