@mui/x-charts
Version:
The community edition of MUI X Charts components.
37 lines • 1.91 kB
text/typescript
import { type BarLabelProps } from "../BarChart/BarLabel/index.mjs";
import { type BarChartProps } from "../BarChart/BarChart.mjs";
import { type ChartsGridProps } from "../ChartsGrid/index.mjs";
import { type ChartsLegendProps } from "../ChartsLegend/index.mjs";
import { type ChartsSurfaceProps } from "../ChartsSurface/index.mjs";
import { type ChartsTooltipProps } from "../ChartsTooltip/index.mjs";
import { type LineChartProps } from "../LineChart/LineChart.mjs";
import { type ScatterChartProps } from "../ScatterChart/ScatterChart.mjs";
import { type PieChartProps } from "../PieChart/PieChart.mjs";
import { type ChartsXAxisProps, type ChartsYAxisProps } from "../models/axis.mjs";
import { type ChartsLocalizationProviderProps } from "../ChartsLocalizationProvider/index.mjs";
import { type ChartsDataProviderProps } from "../ChartsDataProvider/index.mjs";
import { type ChartsLayerContainerProps } from "../ChartsLayerContainer/index.mjs";
import { type ChartsSvgLayerProps } from "../ChartsSvgLayer/index.mjs";
import { type ChartsRadialGridProps } from "../ChartsRadialGrid/index.mjs";
export interface ChartsComponentsPropsList {
MuiChartsXAxis: ChartsXAxisProps;
MuiChartsYAxis: ChartsYAxisProps;
MuiChartsGrid: ChartsGridProps;
MuiRadialChartsGrid: ChartsRadialGridProps;
MuiChartsLegend: ChartsLegendProps;
MuiChartsLocalizationProvider: ChartsLocalizationProviderProps;
MuiChartsTooltip: ChartsTooltipProps;
MuiChartsSurface: ChartsSurfaceProps;
MuiChartsLayerContainer: ChartsLayerContainerProps;
MuiChartsSvgLayer: ChartsSvgLayerProps;
MuiChartsDataProvider: ChartsDataProviderProps;
MuiBarChart: BarChartProps;
MuiBarLabel: BarLabelProps;
MuiLineChart: LineChartProps;
MuiScatterChart: ScatterChartProps;
MuiPieChart: PieChartProps;
}
declare module '@mui/material/styles' {
interface ComponentsPropsList extends ChartsComponentsPropsList {}
}
export {};