我正在嘗試使用腳本「格式化」彙總表。 TrellisVisualization不適用於SummaryTable類。使用GUI,我可以通過將特定列分配給Columns Properties下的Categorization屬性來格式化彙總表。但是,在使用IronPython腳本時,我沒有看到SummaryTable對象的任何名爲Categorization的屬性。所以,我想分配列則CategoryAxis如下:在Spotfire中,如何使用IronPython腳本格式化SummaryTable
mySummaryTable.CategoryAxis = "<[myColumn]>"
但是,這將引發一個錯誤:
AttributeError: 'SummaryTable' object has no attribute 'CategoryAxis'
我使用Axis或CategoricalAxisBase等,性能也嘗試過,但這些選項都沒有鍛鍊。如果有人對此有更多想法,請告訴我。謝謝。 RD