Props for DrillDownModal component.
interface DrillDownModalProps { /** Controls whether the modal is visible. */ isOpen: boolean; onOpenChange: (open: boolean) => void; drillDownData: DrillDownData | null; onExport?: (format: ExportFormat, rows: Record<string, unknown>[]) => void;} Copy
interface DrillDownModalProps { /** Controls whether the modal is visible. */ isOpen: boolean; onOpenChange: (open: boolean) => void; drillDownData: DrillDownData | null; onExport?: (format: ExportFormat, rows: Record<string, unknown>[]) => void;}
Controls whether the modal is visible.
Optional
Props for DrillDownModal component.
Source