Skip to Main Content
Spotfire Ideas Portal
Status Future Consideration
Product Spotfire
Categories Visualization
Created by Guest
Created on Jun 23, 2023

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
  • 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