Highlight is an element to mark any cell inside the grid with custom border color or CSS class
Highlight (opposed to focus):
- it can be placed on any cell
- it must be managed by a developer unlike 'focus'
Definition
interface Highlight {
readonly rowId: Id;
readonly columnId: Id;
readonly borderColor?: string;
readonly className?: string;
}
Properties
Property name | Type | Property description |
---|---|---|
rowId | Id | Row Id of the cell to highlight |
columnId | Id | Column Id of the cell to highlight |
borderColor | string | Optional border color |
className | string | Optional CSS classname of the highlighted cell |