跨表标记行总计的Iron Python脚本

时间:2019-04-04 07:30:33

标签: ironpython spotfire

谁能帮我编写一个交叉表中的交叉表行总计脚本?

谢谢 拉朱

1 个答案:

答案 0 :(得分:1)

快速的Google搜索显示了以下代码:

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