/
Hiding Table Elements
Hiding Table Elements
There are some properties in the graphomate tables' properties sheet which hide specific elements. For example you can use the Row Format Configurations to change the visibility of rows or columns conditionally. To hide specific elements statically you can set their visibility in the "custom.css". The following code block shows some sample css. To use it, the component names (GRAPHOMATETABLE_1_control) have to be replaced with the ones from your application.
CSS-Beispiele
/* hides the second-last child */ #GRAPHOMATETABLE_1_control tbody tr:nth-last-child(2) { display: none !important; } /* hides the third, fourth and fifth element */ #GRAPHOMATETABLE_1_control tbody tr:nth-child(3), #GRAPHOMATETABLE_1_control tbody tr:nth-child(4), #GRAPHOMATETABLE_1_control tbody tr:nth-child(5) { display: none !important; } /* hide the tables' header */ #GRAPHOMATETABLE_1_control thead { display: none; } /* hide the first column */ #GRAPHOMATETABLE_1_control tr th:nth-child(1), #GRAPHOMATETABLE_1_control tr td:nth-child(1) { display: none; }
Related Articles
, multiple selections available,
Related content
Tabellenelemente verstecken
Tabellenelemente verstecken
More like this
Hiding a Series' Element Labels
Hiding a Series' Element Labels
More like this
RowFormatConfiguration
RowFormatConfiguration
More like this
Interactivity at Runtime
Interactivity at Runtime
More like this
en Known Issues (TBL)
en Known Issues (TBL)
More like this
Table
More like this