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.

Reset Zoom Sliders by looping through visuals and checking each visual type

#Reset zoom sliders
from Spotfire.Dxp.Application.Visuals import * 

#1 Loops through visuals
for vis in Application.Document.ActivePageReference.Visuals: 

  #1.1 check each visual type
  if vis.TypeId==VisualTypeIdentifiers.BarChart:

    #1.2 Reset zoom sliders
    vis.As[VisualContent]().XAxis.ZoomRange=AxisRange.DefaultRange
    vis.As[VisualContent]().YAxis.ZoomRange=AxisRange.DefaultRange

1 comment:

ArchitSoniBLR said...

Works like a charm..!

Thanks Jose :)