2016-10-13 6 views
1

Spotfire 7 - > Spotfire 7でIron Pythonを使用してリストオブジェクトにカスタムソート順を適用する方法は?私はdocument.properties ["Columns"]リストを使用して、実行時にクロステーブルの列に値を設定します。ここでSpotfire 7 - > Iron Pythonを使用してリストオブジェクトにカスタムソート順を適用する方法

:私は、クロステーブルのビジュアライゼーション

+0

https://ironpython-test.readthedocs.io/en/latest/howto/sorting.html <<<> >> http://stackoverflow.com/a/612995/6167855 <<<> >> http://stackoverflow.com/questions/12178612/datatable-sorting-in-iron-python – scsimon

答えて

1

の列にリスト値を割り当てる前に、私はこのリファレンスを見てくださいこのリストにカスタムの並べ替え順序を適用したいと思います逆カスタムソート順を作成する例:

from System.Reflection import Assembly 
from Spotfire.Dxp.Data.Collections import * 
from System.Runtime.Serialization import ISerializable 
from System.Collections import IComparer 
from System.Collections.Generic import IComparer 

values = Document.Data.Tables['MY_DATA_TABLE'].Columns['DATE'].RowValues.GetEnumerator() 
myValues = [] 
for val in values: 
       myValues.Add(val.ValidValue) 
       myValues.sort(reverse=True) 
Document.Data.Tables['MY_DATA_TABLE'].Columns['DATE'].Properties.SetCustomSortOrder(myValues) 
関連する問題