Difference between revisions of "Tabulation setGrandTotalColumnVisibility"
(Created page with "Category:Diagram_configuring_CGScript_functions = Tabulation_setGrandTotalColumnVisibility = == Syntax == Tabulation_setGrandTotalColumnVisibility( bool enable); == A...") |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | [[Category: | + | [[Category:Include_total_functions]] |
= Tabulation_setGrandTotalColumnVisibility = | = Tabulation_setGrandTotalColumnVisibility = | ||
+ | Show/hide grand total column in table. Default is hide | ||
+ | |||
+ | (For show/hide grand total row in table, see [[setGrandTotal]]) | ||
== Syntax == | == Syntax == | ||
Line 18: | Line 21: | ||
<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]] |
Latest revision as of 09:28, 16 November 2018
Contents
Tabulation_setGrandTotalColumnVisibility
Show/hide grand total column in table. Default is hide
(For show/hide grand total row in table, see setGrandTotal)
Syntax
Tabulation_setGrandTotalColumnVisibility( bool enable);
Arguments
bool enable
Return type
Empty
Example
DCS_use(15639420);
Tabulation_setGrandTotalColumnVisibility(true);
createCrossDiagram({"VUpper","VLower"},{"HUpper","VLower"});