UNPKG

@mui/x-data-grid-premium

Version:

The Premium plan edition of the MUI X Data Grid Components.

20 lines 875 B
import type { GridChartsConfigurationOptions } from '@mui/x-internals/types'; export interface GridChartsPanelProps { /** * The schema of the charts configuration. * @type {GridChartsConfigurationOptions} * @default {} */ schema?: GridChartsConfigurationOptions; /** * Override the default column name generation logic. Use field in combination with the grid state to determine the name of the column that will be shown to the user. * @param {string} field The field name * @returns {string | undefined} The name of the column or undefined if the column name should be determined by the grid */ getColumnName?: (field: string) => string | undefined; } declare function GridChartsPanel(props: GridChartsPanelProps): import("react/jsx-runtime").JSX.Element; declare namespace GridChartsPanel { var propTypes: any; } export { GridChartsPanel };