Freeze Row Headings (Element Names) in view

Hi,

How do I fix the row dimensions so that they are always shown in a view (e.g. freeze panes in Excel). Currently the column elements stay visible when I scroll vertically, but the row elements scroll off the screen when I scroll horizontally.

Thanks.

The column herders are sticky by default. To make the row headers sticky add this piece of JSON to the advanced options for the grid widget. Where maxNumberOfDimensions is the number of row dimension headers to freeze.

{      "table": {
        "fixedRowHeaders": {
          "enabled": true,
          "maxNumberOfDimensions": 1
        }
}

There’s no way to freeze columns within the table itself. Only the row and column headers can be made sticky.