Create Pivottable"

From Documentation
Line 10: Line 10:
  
 
==Attributes==
 
==Attributes==
<!-- TODO: grand total, data orient -->
+
 
 +
===Grand totals===
 +
You can show or hide grand total rows or columns by specfiying
 +
<source lang="xml">
 +
<pivottable model="${model}" grandTotalForColumns="false" grandTotalForRows="false" />
 +
</source>
 +
Default values are <tt>true</tt>.
 +
 
 +
===Data orientation===
 +
Data orientation means how to arrange data when there are more than one data fields. For example, if we specify "Price" and "Mileage" as data field,
 +
 
 +
<source lang="xml">
 +
<pivottable model="${model}" dataOrient="column" />
 +
</source>
 +
 
 +
gives
 +
 
 +
[[Image: ZKPivotEsn_work_pivot_24.png]]
 +
 
 +
and
 +
 
 +
<source lang="xml">
 +
<pivottable model="${model}" dataOrient="row" />
 +
</source>
 +
 
 +
will give
 +
 
 +
[[Image: ZKPivotEsn_work_pivot_22.png]]
  
 
==Title Cells==
 
==Title Cells==

Revision as of 08:05, 28 March 2011


WarningTriangle-32x32.png This page is under construction, so we cannot guarantee the accuracy of the content!

Create a Pivottable

Given a PivotModel, creating a Pivottable is as simple as

<pivottable model="${model}" />

Attributes

Grand totals

You can show or hide grand total rows or columns by specfiying

<pivottable model="${model}" grandTotalForColumns="false" grandTotalForRows="false" />

Default values are true.

Data orientation

Data orientation means how to arrange data when there are more than one data fields. For example, if we specify "Price" and "Mileage" as data field,

<pivottable model="${model}" dataOrient="column" />

gives

ZKPivotEsn work pivot 24.png

and

<pivottable model="${model}" dataOrient="row" />

will give

ZKPivotEsn work pivot 22.png

Title Cells

Events

Version History

Last Update : 2011/03/28


Version Date Content
     



Last Update : 2011/03/28

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.