UNPKG

@mui/x-charts

Version:

The community edition of the Charts components (MUI X).

9 lines 287 B
import * as React from 'react'; import { ColorContext } from '../context/ColorProvider'; export function useColorProcessor(seriesType) { const colorProcessors = React.useContext(ColorContext); if (!seriesType) { return colorProcessors; } return colorProcessors[seriesType]; }