Package net.sf.jasperreports.charts
Interface JRTimePeriodSeries
-
- All Superinterfaces:
Cloneable
,JRCloneable
- All Known Implementing Classes:
JRBaseTimePeriodSeries
,JRDesignTimePeriodSeries
,JRFillTimePeriodSeries
public interface JRTimePeriodSeries extends JRCloneable
Represents the series for the Time Period dataset.- Author:
- Flavius Sana (flavius_sana@users.sourceforge.net)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JRExpression
getEndDateExpression()
JRHyperlink
getItemHyperlink()
Returns the hyperlink specification for chart items.JRExpression
getLabelExpression()
JRExpression
getSeriesExpression()
JRExpression
getStartDateExpression()
JRExpression
getValueExpression()
-
Methods inherited from interface net.sf.jasperreports.engine.JRCloneable
clone
-
-
-
-
Method Detail
-
getSeriesExpression
JRExpression getSeriesExpression()
- Returns:
- a
java.lang.Comparable
object that identifies each series.
-
getStartDateExpression
JRExpression getStartDateExpression()
- Returns:
- a
java.util.Date
expression representing the start of the time period
-
getEndDateExpression
JRExpression getEndDateExpression()
- Returns:
- a
java.util.Date
expression representing the end of the time period
-
getValueExpression
JRExpression getValueExpression()
- Returns:
- a numeric expression representing the value associated with the time period.
-
getLabelExpression
JRExpression getLabelExpression()
- Returns:
- the label expression. If present, its values will be used to customize item labels in the resulting chart.
-
getItemHyperlink
JRHyperlink getItemHyperlink()
Returns the hyperlink specification for chart items.The hyperlink will be evaluated for every chart item and a image map will be created for the chart.
- Returns:
- hyperlink specification for chart items
-
-