Customer Banners (Ads) - SpiceUp. AX and SpotfireX Disclaimer



If you find this site useful and you want to support, buy me a coffee   to keep this site alive and without ads.

Get a visualization reference from current page using GUID


# Different approach to get a visualization from current page
# To get a complete visualization types to use (such as TablePlot), check the 
# Spotfire.Application.Visuals Namespace 
http://stn.spotfire.com/dxp/html/N_Spotfire_Dxp_Application_Visuals.htm

from System import Guid
from Spotfire.Dxp.Application.Visuals import TablePlot

guid = Guid("2d18db91-e5ac-472d-9cf7-e7c664567d32")
cTable = Application.Document.ActivePageReference.Visuals.TryGetVisual(guid)[1].As[TablePlot]()
print cTable.Title


#To get the the visualization GUID for the previous example
for vis in Application.Document.ActivePageReference.Visuals:
  print vis.Title + '(' + str(vis.Id) + ')'

No comments: