Difference between revisions of "Tabulation setGrandTotalColumnVisibility"

From Catglobe Wiki
Jump to: navigation, search
(Created page with "Category:Diagram_configuring_CGScript_functions = Tabulation_setGrandTotalColumnVisibility = == Syntax == Tabulation_setGrandTotalColumnVisibility( bool enable); == A...")
 
Line 3: Line 3:
 
= Tabulation_setGrandTotalColumnVisibility =
 
= Tabulation_setGrandTotalColumnVisibility =
  
 +
Show/hide grand total column in table. Default is hide
  
 
== Syntax ==
 
== Syntax ==
Line 18: Line 19:
  
 
<source lang="javascript">
 
<source lang="javascript">
 
+
DCS_use(15639420);
 +
Tabulation_setGrandTotalColumnVisibility(true);
 +
createCrossDiagram({"VUpper","VLower"},{"HUpper","VLower"});
 
</source>
 
</source>
 +
[[File:2018-11-16_11-11-20.png]]

Revision as of 06:24, 16 November 2018


Tabulation_setGrandTotalColumnVisibility

Show/hide grand total column in table. Default is hide

Syntax

Tabulation_setGrandTotalColumnVisibility( bool enable);

Arguments

bool enable

Return type

Empty

Example

DCS_use(15639420);
Tabulation_setGrandTotalColumnVisibility(true);
createCrossDiagram({"VUpper","VLower"},{"HUpper","VLower"});

2018-11-16 11-11-20.png