| net.sf.jasperreports.engine.JRChartCustomizer
All known Subclasses: net.sf.jasperreports.engine.JRAbstractChartCustomizer,
JRChartCustomizer | public interface JRChartCustomizer (Code) | | This interface allows users to provide pluggable chart customizers. A class that implements this interface can
be defined and its name must be specified in the report template. At fill time, the corresponding customize()
method of this class will be called, if advanced chart customization is needed.
If values of report parameters, variables or fields are needed in the customization, the customizer implementation
should extend
net.sf.jasperreports.engine.JRAbstractChartCustomizer JRAbstractChartCustomizer to gain access to such values.
author: Michael McMahon (Michael.McMahon@activewire.net) version: $Id: JRChartCustomizer.java 1229 2006-04-19 10:27:35Z teodord $ |
Method Summary | |
public void | customize(JFreeChart chart, JRChart jasperChart) This method is called at fill time, before the chart is rendered. |
customize | public void customize(JFreeChart chart, JRChart jasperChart)(Code) | | This method is called at fill time, before the chart is rendered.
Parameters: chart - the JFreeChart object, which can be accessed and modified Parameters: jasperChart - the JasperReports version of the chart, containing data that might be needed incustomization |
|
|