@mui/x-charts
Version:
The community edition of the charts components (MUI X).
16 lines (15 loc) • 653 B
TypeScript
import * as React from 'react';
import { ChartContainerProps } from '../ChartContainer';
export interface ResponsiveChartContainerProps extends Omit<ChartContainerProps, 'width' | 'height'> {
/**
* The width of the chart in px. If not defined, it takes the width of the parent element.
* @default undefined
*/
width?: number;
/**
* The height of the chart in px. If not defined, it takes the height of the parent element.
* @default undefined
*/
height?: number;
}
export declare const ResponsiveChartContainer: React.ForwardRefExoticComponent<ResponsiveChartContainerProps & React.RefAttributes<unknown>>;