Angular Data Grid: Customising Borders
Control the borders around rows, cells and UI elements.
The grid exposes many variables for customising borders. For each kind of border, the style and colour are controlled by two different variables. For a given kind of border, --ag-borders-{kind} should be set to a CSS border style and width (e.g. solid 1px) or none to disable; and --ag-{kind}-border-color can be set to a CSS border color e.g. red.
These variables use Variable Cascading to allow you to enable/disable all borders quickly or fine tune the borders shown. In the list below, setting a parent item in the list will set the default value for all children:
-
--ag-bordersand--ag-border-color- the master control for all borders in the grid--ag-borders-criticaland--ag-critical-border-color- borders that are important for UX even on grids without many borders - for example to differentiate pinned from regular columns. Themes that disable borders generally may want to enable these borders-
--ag-borders-secondaryand--ag-secondary-border-color- borders separating UI elements within components.--ag-borders-rowand--ag-secondary-border-row- borders between rows in the grid--ag-borders-inputand--ag-secondary-border-row- borders around text inputs
--ag-borders-secondaryand--ag-secondary-border-color
Example
.ag-theme-alpine {
/* disable all borders */
--ag-borders: none;
/* then add back a border between rows */
--ag-borders-row: dashed 1px;
--ag-row-border-color: rgb(150, 150, 200);
}