Jump to content

Is there any way (using Iron Python or by some other means) to dynamically set (by user) the number of Locked Columns in a Consumer Level, web, Spotfire Visualization


Scott Loetman

Recommended Posts

You can do the following,

1. Create a Text Area with input field to define how many columns to freeze

2. use the below script to freeze the columns

 

from Spotfire.Dxp.Application.Visuals import *

#add a script parameter 'vis' refering to the tableplot

tablePlot=vis.As[TablePlot]()

tablePlot.FrozenCount=Document.Properties["myInputField"]

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...