Freeze Columns in Tabular Report

Hello Helical,

I am using Helical Insight 4.0. When I add a large number of columns, the column width decreases drastically. For this, I have applied column width script and a horizontal scroll appears. I want to freeze the first column. Is there a way to do it?

Thank You,
Snow.

Hello Snow,

In order to freeze the first column, use the following script in the CSS editor:

table thead th:first-child {

position: sticky;

left: 0;

z-index: 999;

background: white;

}

table td:first-child {

position: sticky;

left: 0;

z-index: 999;

background: white;

}

image

Note: The adjust column width script needs to be applied.

Thank You,
Helical Insight.