Hi Tom -
If you want to change those defaults you will need to modify Pivot.jsp.
Code:
<PCI Root>\jboss\server\default\deploy\pentaho.war\jsp
\Pivot.jsp
Scroll down to the first try block.
Code:
IRuntimeContext context = null;
try {
and look at all the "else" statements.
eg.
Code:
if( context.getOutputNames().contains( PivotViewComponent.CHARTTITLEFONTSIZE ) ) {
chartTitleFontSize = Integer.parseInt(context.getOutputParameter( PivotViewComponent.CHARTTITLEFONTSIZE ).getStringValue());
session.setAttribute( "pivot-"+PivotViewComponent.CHARTTITLEFONTSIZE+"-"+pivotId, new Integer(chartTitleFontSize));
} else {
chartTitleFontSize = 18;
HTH.
Darrin