Remove header and lines from table(Tabular Report)

Hello Team Helical,

I am using Helical Insight enterprise version 3.1. From a tabular report I would like to remove column header as well as the lines. Please refer to below image and help in implementing the same.

remove-header

Thank You
Riwim

1 Like

Hello Riwim,

Apply the below code in CSS Editor and this will remove the header as well as lines. Similarly, you can apply additional CSS as well for additional changes.

th{
display: none !important;
}
td{
border : none !important;
}

Here is the output

Thank You
Team Helical