Difference between revisions of "Tabulation setTotalColumnVisibility"

From Catglobe Wiki
Jump to: navigation, search
(Created page with "==== Tabulation_setTotalColumnVisibility<br/> ==== Show/hide the total column. '''Syntax''' Tabulation_setTotalColumnVisibility(a); '''Arguments''' ''a'': Is a Boolean ex...")
 
 
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
[[Category:Include_total_functions]]
 
==== Tabulation_setTotalColumnVisibility<br/> ====
 
==== Tabulation_setTotalColumnVisibility<br/> ====
  
Line 17: Line 18:
 
'''Examples'''
 
'''Examples'''
  
''Tabulation_setTotalColumnVisibility(true);<br/>''
+
<span style="color:#DF8621"> Example for cross 1x1 </span>
 +
<source lang="javascript">
 +
DCS_use(15639259);
 +
Tabulation_setTotalColumnVisibility(false);
 +
createCrossDiagram({"Gender"},{"Age"});
 +
</source>
 +
[[File:2018-11-12_10-31-07.png]]
  
''Tabulation_setTotalColumnVisibility(false);''<br/>
 
  
'''Availability'''
+
<span style="color:#DF8621"> Example for cross 1x2 </span>
 
+
<source lang="javascript">
Version 5.8
+
DCS_use(15639259);
 +
Tabulation_setTotalColumnVisibility(false);
 +
createCrossDiagram({"Gender"},{"Age","Q3"});
 +
</source>
 +
[[File:2018-11-12_10-41-06.png]]

Latest revision as of 10:29, 16 November 2018

Tabulation_setTotalColumnVisibility

Show/hide the total column.

Syntax

Tabulation_setTotalColumnVisibility(a);

Arguments

a: Is a Boolean expression.

Return type

empty

Examples

Example for cross 1x1

DCS_use(15639259);
Tabulation_setTotalColumnVisibility(false);
createCrossDiagram({"Gender"},{"Age"});

2018-11-12 10-31-07.png


Example for cross 1x2

DCS_use(15639259);
Tabulation_setTotalColumnVisibility(false);
createCrossDiagram({"Gender"},{"Age","Q3"});

2018-11-12 10-41-06.png