UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

29 lines 1.33 kB
import { BarLabelProps } from "../BarChart/BarLabel/index.js"; import { BarChartProps } from "../BarChart/BarChart.js"; import { ChartsGridProps } from "../ChartsGrid/index.js"; import { ChartsLegendProps } from "../ChartsLegend/index.js"; import { ChartsSurfaceProps } from "../ChartsSurface/index.js"; import { ChartsTooltipProps } from "../ChartsTooltip/index.js"; import { LineChartProps } from "../LineChart/LineChart.js"; import { ScatterChartProps } from "../ScatterChart/ScatterChart.js"; import { PieChartProps } from "../PieChart/PieChart.js"; import { ChartsXAxisProps, ChartsYAxisProps } from "../models/axis.js"; import { ChartsLocalizationProviderProps } from "../ChartsLocalizationProvider/index.js"; export interface ChartsComponentsPropsList { MuiChartsXAxis: ChartsXAxisProps; MuiChartsYAxis: ChartsYAxisProps; MuiChartsGrid: ChartsGridProps; MuiChartsLegend: ChartsLegendProps; MuiChartsLocalizationProvider: ChartsLocalizationProviderProps; MuiChartsTooltip: ChartsTooltipProps; MuiChartsSurface: ChartsSurfaceProps; MuiBarChart: BarChartProps; MuiBarLabel: BarLabelProps; MuiLineChart: LineChartProps; MuiScatterChart: ScatterChartProps; MuiPieChart: PieChartProps; } declare module '@mui/material/styles' { interface ComponentsPropsList extends ChartsComponentsPropsList {} } export {};