Updated Row Config
The Predefined Configuration for the Updated Row Function.
Updated Row State
Property | Description | Default |
---|---|---|
DownColor | Default colour to use when numeric or date cell that triggered the update had down data change | red |
Duration | How long Updated Row will show colour; not currently used, so value is 'Always' - row updates remain in place until cleared | |
EnableUpdatedRow | Enables the Updated Row function so rows where data changes are highlighted | false |
JumpToRow | Adaptable will jump to display updated row | false |
MaxUpdatedRowsInStore | Maximum number of updated rows to hold in State - and therefore to display | Infinity |
NeutralColor | Default colour to use when cell that triggered the update had no directional data change | gray |
UpColor | Default colour to use when numeric or date cell that triggered the update had up data change | green |
Updated Row Config Example
export default {
UpdatedRow: {
EnableUpdatedRow: true,
JumpToRow: true,
UpColor: '#32CD32', // lime green
DownColor: '#FFA500', // orange
NeutralColor: '#FFFF00', // yellow
}
} as PredefinedConfig;