Jump to content

Recommended Posts

Posted

Hi

 

I have a Spotfire analysis which has large 20+ pages with multiple visualizations each. I want to set the details on demand (DoD) table to vertical by default.

Is there any script so that i can change the oriention of DoD to vertical for all the visualizations in an analysis

 

Thank you

Posted

You can use the following script as a reference

from Spotfire.Dxp.Application.Layout import DockingPlacement,PanelRegion

for page in Document.Pages:

panel=page.DetailsOnDemandPanel

panel.DockingPlacement=DockingPlacement(PanelRegion.Bottom,0)Choose the panel region as needed. Below is the documentation reference,

https://docs.tibco.com/pub/doc_remote/sfire_dev/area/doc/api/TIB_sfire-a...

https://docs.tibco.com/pub/doc_remote/sfire_dev/area/doc/api/TIB_sfire-a...

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