@mui/x-charts
Version:
The community edition of the charts components (MUI X).
12 lines (11 loc) • 805 B
TypeScript
import * as React from 'react';
import { DrawingProviderProps } from '../context/DrawingProvider';
import { SeriesContextProviderProps } from '../context/SeriesContextProvider';
import { ChartsSurfaceProps } from '../ChartsSurface';
import { CartesianContextProviderProps } from '../context/CartesianContextProvider';
export type ChartContainerProps = Omit<ChartsSurfaceProps & SeriesContextProviderProps & Omit<DrawingProviderProps, 'svgRef'> & CartesianContextProviderProps, 'children'> & {
children?: React.ReactNode;
};
export declare const ChartContainer: React.ForwardRefExoticComponent<Omit<ChartsSurfaceProps & SeriesContextProviderProps & Omit<DrawingProviderProps, "svgRef"> & CartesianContextProviderProps, "children"> & {
children?: React.ReactNode;
} & React.RefAttributes<unknown>>;