Important Props
interface DataEditorProps {
// ...other props
fixedShadowX?: boolean;
fixedShadowY?: boolean;
freezeColumns?: number;
freezeTrailingRows?: number;
getCellsForSelection?: true | ((selection, abortSignal) => GetCellsThunk | CellArray);
height?: string | number;
markdownDivCreateNode?: ((content) => DocumentFragment);
onVisibleRegionChanged?: ((range, tx, ty, extras) => void);
provideEditor?: ProvideEditorCallback<GridCell>;
rowHeight?: number | ((index) => number);
smoothScrollX?: boolean;
smoothScrollY?: boolean;
width?: string | number;
// ...other props
}fixedShadow
freezeColumns
freezeTrailingRows
getCellsForSelection
markdownDivCreateNode
onVisibleRegionChanged
provideEditor
rowHeight
smoothScroll
width/height
Last updated