Toggle menu
862
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

SetSortMode: Difference between revisions

From Catglobe Wiki
Nguyenduyan (talk | contribs)
Created page with "Category:Sorting_functions {{HelpFiles}} = setSortMode = Define which data should be sorted (absolute or percentage data) == Syntax == setSortMode(sortDataType); ==..."
 
Nguyenduyan (talk | contribs)
No edit summary
Line 25: Line 25:
DCS_use(15593723);
DCS_use(15593723);
Tabulation_setSortOrderVertical(Tabulation_SortOrder_HighToLow);
Tabulation_setSortOrderVertical(Tabulation_SortOrder_HighToLow);
//Tabulation_setSortHorizontalWhichColumn(0);
setSortMode(Diagram_SortDataType_Percentage);
setSortMode(Diagram_SortDataType_Percentage);
createCrossDiagram({"DD_Region"}, {"D_Gender"});
createCrossDiagram({"DD_Region"}, {"D_Gender"});

Revision as of 02:54, 9 November 2017


setSortMode

Define which data should be sorted (absolute or percentage data)

Syntax

setSortMode(sortDataType);

Arguments

sortDataType: is a number expression. It's one of the constants specified below:

  • 1: Diagram_SortDataType_Absolute
  • 2: Diagram_SortDataType_Percentage

Return type

Empty

Example

DCS_use(15593723);
Tabulation_setSortOrderVertical(Tabulation_SortOrder_HighToLow);
//Tabulation_setSortHorizontalWhichColumn(0);
setSortMode(Diagram_SortDataType_Percentage);
createCrossDiagram({"DD_Region"}, {"D_Gender"});