@adaptabletools/adaptable-cjs
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
19 lines (18 loc) • 438 B
TypeScript
import { AdaptableStyle } from '../../../types';
/**
* Defines how a given Column in AdapTable should be highlighted
*/
export interface ColumnHighlightInfo {
/**
* Id of Column being highlighted
*/
columnId: string;
/**
* Time after which Column should be unhighlighted
*/
timeout?: number;
/**
* Adaptable Style to use in the Column Highlight
*/
highlightStyle: AdaptableStyle;
}