用于交叉表格的铁Python脚本行总计[关闭]

问题描述 投票:-6回答:1

任何人都可以帮助我在交叉表中跨表行Grand Total的脚本。

谢谢Raju

ironpython spotfire
1个回答
1
投票

快速谷歌搜索出现了这段代码:

from Spotfire.Dxp.Application.Visuals import *

#Script Parameter
myVis = myVis.As[Visualization]()

#Show grand total for rows (not needed if creating toggle)
myVis.ShowRowGrandTotal = True

#How to toggle
if myVis.ShowRowGrandTotal == False:
    myVis.ShowRowGrandTotal = True
else:
    myVis.ShowRowGrandTotal = False

参考:https://www.sf-ref.com/ironpython/visualizations/cross-table/appearance/

将该脚本附加到按钮或某种动作,你很高兴。

仅供参考:你被低估了,因为这可以通过搜索以极少的努力找到。您也没有提供任何关于您是否事先尝试过任何事情的背景信息。请读一读:https://stackoverflow.com/help/how-to-ask

© www.soinside.com 2019 - 2024. All rights reserved.