This document (including, without limitation, any product roadmap or statement of direction data) illustrates the planned testing, release and availability dates for Spotfire products and services. It is for informational purposes only and its contents are subject to change without notice. Planning to implement - generally 6-12 months out. Likely to Implement - generally means 12-18 months out.
Copyright © 2014-2023 Cloud Software Group, Inc. All Rights Reserved.
Cloud Software Group, Inc. ("Company") follows the EU Standard Contractual Clauses as per the Company's Data Processing Agreement.
Terms of Use |
Privacy Policy |
Trademarks |
Patents |
Contact Us
One of my customers is asking for this API too.
That is, using IronPython to read the min range and max range, exactly the same values as clicking button "Set to Current Range" on Y Axis/Value Axis property page.
In Spotfire 7.11, we can read the min and max range by temporarily set manul zoom to true, however it doesn't work in 10.10 any more.
from Spotfire.Dxp.Application.Visuals import *
v=vis.As[BarChart]()
v.YAxis.ManualZoom=True
print v.YAxis.ZoomRange
v.YAxis.ManualZoom=False
#result is AxisRange[Low=0, High=43133311]
Thanks.