Difference between revisions of "Tabulation setExcludedSortOrderHorizontal"
(Created page with "=== Tabulation_setExcludedSortOrderHorizontal === Exclude some axis options from the the horizontal sorting === Syntax === Tabulation_setExcludedSortOrderHorizontal(axisArra...") |
|||
(4 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
+ | [[Category:Sorting_functions]] | ||
=== Tabulation_setExcludedSortOrderHorizontal === | === Tabulation_setExcludedSortOrderHorizontal === | ||
Exclude some axis options from the the horizontal sorting | Exclude some axis options from the the horizontal sorting | ||
Line 17: | Line 18: | ||
DCS_use(15560370); | DCS_use(15560370); | ||
+ | |||
Tabulation_setExcludedSortOrderHorizontal({"Viet Nam","Don't know"}); | Tabulation_setExcludedSortOrderHorizontal({"Viet Nam","Don't know"}); | ||
+ | |||
Tabulation_setSortOrderHorizontal(Tabulation_SortOrder_LowToHigh); | Tabulation_setSortOrderHorizontal(Tabulation_SortOrder_LowToHigh); | ||
+ | |||
createCrossDiagram({"Q1"},{"Q1_Single"}); | createCrossDiagram({"Q1"},{"Q1_Single"}); | ||
− | //result: | + | |
+ | //result:<br/> | ||
+ | [[File:SetExcludedHorizontal.jpg]] |
Latest revision as of 09:21, 16 November 2018
Tabulation_setExcludedSortOrderHorizontal
Exclude some axis options from the the horizontal sorting
Syntax
Tabulation_setExcludedSortOrderHorizontal(axisArray);
Arguments
axisArray: an array which contains some axis options that will be excluded from the the horizontal sorting
Return type
empty
Examples
DCS_use(15560370);
Tabulation_setExcludedSortOrderHorizontal({"Viet Nam","Don't know"});
Tabulation_setSortOrderHorizontal(Tabulation_SortOrder_LowToHigh);
createCrossDiagram({"Q1"},{"Q1_Single"});