public interface PivotHeaderRow
N.America, Penguins, 100 N.America, Lions, 200 N.America, Camels, 10 N.America, Lions, 200 S.America, Penguins, 300 S.America, Camels,5 S.America, Lions, 150, Europe, Penguins, 0,If you define the second column as the source for the header row, you can get a pivot table like:
----------------------------------------- Continent | Penguins | Lions | Camels | ----------------------------------------- N. America| 100 | 200 | 10 | ----------------------------------------- S. America| 200 | 300 | 5 | ----------------------------------------- Europe ... -----------------------------------------where
------------------------------ | Penguins | Lions | Camels | ------------------------------is the crosstab header row
DefaultPivotHeaderRow
Modifier and Type | Method and Description |
---|---|
Object |
getValue(NewRowEvent newRowEvent)
this method returns the value for the current data row (taken from newRowEvent)
|
Object getValue(NewRowEvent newRowEvent)
newRowEvent
- Copyright © 2006–2015. All rights reserved.