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.

SetGrandTotal: Difference between revisions

From Catglobe Wiki
Created page with "Category:Diagram_configuring_CGScript_functions = setGrandTotal = == Syntax == setGrandTotal( bool enable); == Arguments == bool ''enable'' == Return type == Empty..."
 
No edit summary
Line 3: Line 3:
= setGrandTotal =
= setGrandTotal =


Add one more Total row as total of alls SubTotal row
Default is not set


== 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]]

Revision as of 04:00, 16 November 2018


setGrandTotal

Add one more Total row as total of alls SubTotal row

Default is not set

Syntax

setGrandTotal( bool enable);

Arguments

bool enable

Return type

Empty

Example

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