Difference between revisions of "Tabulation setSortVerticalWhichColumn"
Nguyenduyan (talk | contribs) (→Tabulation_setSortVerticalWhichColumn) |
Nguyenduyan (talk | contribs) (→Tabulation_setSortVerticalWhichColumn) |
||
Line 5: | Line 5: | ||
Define which column should be sort. | Define which column should be sort. | ||
+ | |||
Use combine with | Use combine with | ||
Tabulation_setSortOrderVertical(Tabulation_SortOrder_LowToHigh); | Tabulation_setSortOrderVertical(Tabulation_SortOrder_LowToHigh); | ||
+ | |||
or | or | ||
+ | |||
Tabulation_setSortOrderVertical(Tabulation_SortOrder_HighToLow); | Tabulation_setSortOrderVertical(Tabulation_SortOrder_HighToLow); | ||
+ | |||
== Syntax == | == Syntax == |
Revision as of 04:33, 12 July 2017
Contents
Tabulation_setSortVerticalWhichColumn
Define which column should be sort.
Use combine with Tabulation_setSortOrderVertical(Tabulation_SortOrder_LowToHigh);
or
Tabulation_setSortOrderVertical(Tabulation_SortOrder_HighToLow);
Syntax
Tabulation_setSortVerticalWhichColumn( column);
Arguments
column: is a number expression. It's the column you want to sort (start with 0)
Return type
empty
Example
DCS_use(15569074);
Tabulation_setSortOrderVertical(Tabulation_SortOrder_LowToHigh);
Tabulation_setSortVerticalWhichColumn(1);
createCrossDiagram({"Q2"}, {"Panel_Age"});
Before set sort vertical low to high which column 1
After set sort vertical low to high which column 1