More actions
Created page with "Category:Diagram_configuring_CGScript_functions = setGrandTotal = == Syntax == setGrandTotal( bool enable); == Arguments == bool ''enable'' == Return type == Empty..." |
No edit summary |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
[[Category: | [[Category:Include_total_functions]] | ||
= setGrandTotal = | = setGrandTotal = | ||
Show/hide grand total row in table, default is hide | |||
(For show/hide grand total column in table, see [[Tabulation_setGrandTotalColumnVisibility]]) | |||
== Syntax == | == Syntax == | ||
Line 18: | Line 21: | ||
<source lang="javascript"> | <source lang="javascript"> | ||
DCS_use(15639420); | |||
setGrandTotal(true) ; | |||
createCrossDiagram({"VUpper","VLower"},{"HUpper","HLower"}); | |||
</source> | </source> | ||
[[File:2018-11-16_10-33-01.png]] |
Latest revision as of 08:27, 16 November 2018
setGrandTotal
Show/hide grand total row in table, default is hide
(For show/hide grand total column in table, see Tabulation_setGrandTotalColumnVisibility)
Syntax
setGrandTotal( bool enable);
Arguments
bool enable
Return type
Empty
Example
DCS_use(15639420);
setGrandTotal(true) ;
createCrossDiagram({"VUpper","VLower"},{"HUpper","HLower"});