slickgrid
Version:
A lightning fast JavaScript grid/spreadsheet
14 lines (10 loc) • 413 B
text/typescript
export interface AutoTooltipOption {
/** are tooltip enabled for all cells? */
enableForCells?: boolean;
/** are tooltip enabled for column headers */
enableForHeaderCells?: boolean;
/** what is the maximum tooltip length in pixels (only type the number) */
maxToolTipLength?: number;
/** Allow preventing custom tooltips from being overwritten by auto tooltips */
replaceExisting?: boolean;
}