UNPKG

@mui/x-data-grid-premium

Version:

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

17 lines 555 B
import type { Dataset } from '@mui/x-internals/types'; export type ChartState = { label?: string; synced: boolean; dimensions: Dataset<string | number | null>; values: Dataset<number | null>; type: string; configuration: Record<string, string | number | boolean | null>; dimensionsLabel?: string; valuesLabel?: string; maxDimensions?: number; maxValues?: number; }; export interface GridChartsIntegrationContextValue { chartStateLookup: Record<string, ChartState>; setChartState: (id: string, state: Partial<ChartState>) => void; }