Class ChartThemeSettings
- java.lang.Object
-
- net.sf.jasperreports.chartthemes.simple.ChartThemeSettings
-
- All Implemented Interfaces:
Serializable
,JRChangeEventsSupport
public class ChartThemeSettings extends Object implements JRChangeEventsSupport, Serializable
- Author:
- Teodor Danciu (teodord@users.sourceforge.net)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
PROPERTY_chartSettings
static String
PROPERTY_domainAxisSettings
static String
PROPERTY_legendSettings
static String
PROPERTY_plotSettings
static String
PROPERTY_rangeAxisSettings
static String
PROPERTY_subtitleSettings
static String
PROPERTY_titleSettings
-
Constructor Summary
Constructors Constructor Description ChartThemeSettings()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ChartSettings
getChartSettings()
AxisSettings
getDomainAxisSettings()
JRPropertyChangeSupport
getEventSupport()
Returns the property change support object for this instance.LegendSettings
getLegendSettings()
PlotSettings
getPlotSettings()
AxisSettings
getRangeAxisSettings()
TitleSettings
getSubtitleSettings()
TitleSettings
getTitleSettings()
void
setChartSettings(ChartSettings chartSettings)
void
setDomainAxisSettings(AxisSettings domainAxisSettings)
void
setLegendSettings(LegendSettings legendSettings)
void
setPlotSettings(PlotSettings plotSettings)
void
setRangeAxisSettings(AxisSettings rangeAxisSettings)
void
setSubtitleSettings(TitleSettings subtitleSettings)
void
setTitleSettings(TitleSettings titleSettings)
-
-
-
Field Detail
-
PROPERTY_chartSettings
public static final String PROPERTY_chartSettings
- See Also:
- Constant Field Values
-
PROPERTY_titleSettings
public static final String PROPERTY_titleSettings
- See Also:
- Constant Field Values
-
PROPERTY_subtitleSettings
public static final String PROPERTY_subtitleSettings
- See Also:
- Constant Field Values
-
PROPERTY_legendSettings
public static final String PROPERTY_legendSettings
- See Also:
- Constant Field Values
-
PROPERTY_plotSettings
public static final String PROPERTY_plotSettings
- See Also:
- Constant Field Values
-
PROPERTY_domainAxisSettings
public static final String PROPERTY_domainAxisSettings
- See Also:
- Constant Field Values
-
PROPERTY_rangeAxisSettings
public static final String PROPERTY_rangeAxisSettings
- See Also:
- Constant Field Values
-
-
Method Detail
-
getChartSettings
public ChartSettings getChartSettings()
-
setChartSettings
public void setChartSettings(ChartSettings chartSettings)
-
getSubtitleSettings
public TitleSettings getSubtitleSettings()
- Returns:
- the subtitleSettings
-
setSubtitleSettings
public void setSubtitleSettings(TitleSettings subtitleSettings)
- Parameters:
subtitleSettings
- the subtitleSettings to set
-
getTitleSettings
public TitleSettings getTitleSettings()
- Returns:
- the titleSettings
-
setTitleSettings
public void setTitleSettings(TitleSettings titleSettings)
- Parameters:
titleSettings
- the titleSettings to set
-
getLegendSettings
public LegendSettings getLegendSettings()
- Returns:
- the legendSettings
-
setLegendSettings
public void setLegendSettings(LegendSettings legendSettings)
- Parameters:
legendSettings
- the legendSettings to set
-
getEventSupport
public JRPropertyChangeSupport getEventSupport()
Description copied from interface:JRChangeEventsSupport
Returns the property change support object for this instance.- Specified by:
getEventSupport
in interfaceJRChangeEventsSupport
- Returns:
- the property change support object for this instance
-
getPlotSettings
public PlotSettings getPlotSettings()
- Returns:
- the plotSettings
-
setPlotSettings
public void setPlotSettings(PlotSettings plotSettings)
- Parameters:
plotSettings
- the plotSettings to set
-
getDomainAxisSettings
public AxisSettings getDomainAxisSettings()
- Returns:
- the domainAxisSettings
-
setDomainAxisSettings
public void setDomainAxisSettings(AxisSettings domainAxisSettings)
- Parameters:
domainAxisSettings
- the domainAxisSettings to set
-
getRangeAxisSettings
public AxisSettings getRangeAxisSettings()
- Returns:
- the rangeAxisSettings
-
setRangeAxisSettings
public void setRangeAxisSettings(AxisSettings rangeAxisSettings)
- Parameters:
rangeAxisSettings
- the rangeAxisSettings to set
-
-