UNPKG

@adaptabletools/adaptable

Version:

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

14 lines (13 loc) 496 B
/** * Cell-text token primitives shared by several Styled Column types * (Percent Bar, Gradient, Bullet Chart, Range Bar, Rating) when configuring * what to display as text overlay / tooltip content. */ /** * Text optionally to show in a Special Column Style special style: 'CellValue' or 'PercentageValue' */ export type CellTextOption = 'CellValue' | 'PercentageValue'; /** * Array of CellTextOption available in Special Column Styles */ export type CellTextOptions = CellTextOption[];