UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

23 lines (22 loc) 519 B
import { AdaptableStyle } from '../../../types'; /** * Defines how a given Cell in AdapTable should be highlighted */ export interface CellHighlightInfo { /** * Id of Column containing Cell */ columnId: string; /** * Primary Key Value of row containing Cell */ primaryKeyValue?: any; /** * Time after which Cell should be unhighlighted */ timeout?: number; /** * Adaptable Style to use in the Cell Highlight */ highlightStyle: AdaptableStyle; }