Saturday, June 22, 2024

Most Common IronPython Scripts

1. How to Change the Title of a Visualization

A frequent task is dynamically updating the title of a visualization based on certain conditions or user inputs. Here's a basic script to change the title of the first visualization in your analysis:


from Spotfire.Dxp.Application.Visuals import *
visual.Title = Document.Properties["dp"]














No comments:

Post a Comment

How to Toggle Label Visibility in Spotfire Using IronPython Script

Are you looking to enhance your Spotfire visualizations by dynamically toggling label visibility? This blog will guide you through using Iro...