Data Rendering"

From Documentation
Line 81: Line 81:
  
  
$nbsp;
+
 
 +
 
 
==Version History==
 
==Version History==
 
{{LastUpdated}}
 
{{LastUpdated}}

Revision as of 06:28, 25 November 2011


The rendering of Pivottable is defined by a PivotRenderer. You set your custom renderer by calling setPivotRenderer() method on Pivottable, or leave it null to use the default PivotRenderer.

PivotRenderer determines:

  • How data Object in each cell (either in column, row, or data field) is converted to String for display
  • Column and Row sizes

In addition, you can implement PivotRendererExt (which extends from PivotRenderer), which determines:

  • Custom sclass (CSS class) and/or style on data cells.


SimplePivotRenderer

We have provided SimplePivotRenderer, a basic implementation of PivotRendererExt, to be the default renderer and a skeleton class to extend from.

public class SimplePivotRenderer implements PivotRendererExt {
	
	private DecimalFormat _fnf = new DecimalFormat("##,###.00");
	private DecimalFormat _nnf = new DecimalFormat("##,###");
	
	@Override
	public String renderCell(Object data, Pivottable table, PivotHeaderContext rowContext, 
			PivotHeaderContext columnContext, PivotField dataField) {
		return data == null ? "" : data instanceof Integer ? _nnf.format(data) : _fnf.format(data);
	}
	@Override
	public String renderField(Object data, Pivottable table, PivotField field) {
		return field.getType() == PivotField.Type.DATA ? 
			field.getTitle() : data == null ? "(null)" : String.valueOf(data);
	}
	@Override
	public String renderGrandTotalField(Pivottable table, PivotField field) {
		if (field == null) return "Grand Total";
		return "Grand Total of " + field.getTitle();
	}
	@Override
	public String renderSubtotalField(Object data, Pivottable table, PivotField field, Calculator calculator) {
		String calLabel = Texts.capitalize(calculator.getType());
		String dataLabel = data == null ? "Null" : data.toString();
		return dataLabel + " " + calLabel;
	}
	@Override
	public int getColumnSize(Pivottable table, PivotHeaderContext colc, PivotField field) {
		return colc.isGrandTotal() && field != null ? 150 : 100;
	}
	@Override
	public int getRowSize(Pivottable table, PivotHeaderContext rowc, PivotField field) {
		return 20;
	}
	@Override
	public String renderCellSClass(Object data, Pivottable table, PivotHeaderContext rowContext, 
			PivotHeaderContext columnContext, PivotField dataField) {
		return null;
	}
	@Override
	public String renderCellStyle(Object data, Pivottable table, PivotHeaderContext rowContext, 
			PivotHeaderContext columnContext, PivotField dataField) {
		return null;
	}

}

Data display

To customize data display, override renderCell, renderField, renderGrandTotalField, and renderSubtotalField respectively.

Column and row sizes

To customize the initial size of columns and rows, override getColumnSize and getRowSize.

Custom CSS

To provide custom CSS class or custom style on data cell, override renderCellSClass or renderCellStyle.

Samples of such customization can be found in the source code of Pivottable demo.


 

PivotHeaderContext

 

Version History

Last Update : 2011/11/25


Version Date Content
     



Last Update : 2011/11/25

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