Skip to Main Content
Spotfire Ideas Portal

Show/hide cross table columns

Ability to Hide / Unhide the column that we not required. Like in Excel. This works also when I have multiple Horizontal Column in the Cross Table.

  • Attach files
      Drop here to upload
    • Guest
      Reply
      |
      Aug 10, 2023

      Hello, I am using a workaround for this:

      I'm making an IronPython script to set the column width to 0.


      from Spotfire.Dxp.Application.Visuals import CrossTablePlot

      crossTable = ct.As[CrossTablePlot]()

      #Hide the first column

      crossTable.RowHeaderWidths[0]=0


      1 reply