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.

Tabulation setTotalColumnVisibility: Difference between revisions

From Catglobe Wiki
Created page with "==== Tabulation_setTotalColumnVisibility<br/> ==== Show/hide the total column. '''Syntax''' Tabulation_setTotalColumnVisibility(a); '''Arguments''' ''a'': Is a Boolean ex..."
 
No edit summary
 
(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 08: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"});


Example for cross 1x2

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