@mui/x-charts
Version:
The community edition of the Charts components (MUI X).
14 lines (13 loc) • 494 B
TypeScript
import * as React from 'react';
import { ContinuousColorConfig } from '../../../models/colorMapping';
type ChartsContinuousGradientProps = {
isReversed?: boolean;
gradientId: string;
size: number;
direction: 'x' | 'y';
scale: (value: any) => number | undefined;
colorMap: ContinuousColorConfig;
colorScale: (value: any) => string | null;
};
export default function ChartsContinuousGradient(props: ChartsContinuousGradientProps): React.JSX.Element | null;
export {};