Package net.sf.jasperreports.charts
Interface JRGanttSeries
-
- All Known Implementing Classes:
JRBaseGanttSeries,JRDesignGanttSeries,JRFillGanttSeries
public interface JRGanttSeriesRepresents the series for the Gantt dataset.- Author:
- Peter Risko (peter@risko.hu)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JRExpressiongetEndDateExpression()JRHyperlinkgetItemHyperlink()Returns the hyperlink specification for chart items.JRExpressiongetLabelExpression()JRExpressiongetPercentExpression()JRExpressiongetSeriesExpression()JRExpressiongetStartDateExpression()JRExpressiongetSubtaskExpression()JRExpressiongetTaskExpression()
-
-
-
Method Detail
-
getSeriesExpression
JRExpression getSeriesExpression()
- Returns:
- the expression of the series name
-
getTaskExpression
JRExpression getTaskExpression()
- Returns:
- the expression of the task name
-
getSubtaskExpression
JRExpression getSubtaskExpression()
- Returns:
- the expression of the subtask name
-
getStartDateExpression
JRExpression getStartDateExpression()
- Returns:
- the start date expression
-
getEndDateExpression
JRExpression getEndDateExpression()
- Returns:
- the end date expression
-
getPercentExpression
JRExpression getPercentExpression()
- Returns:
- the task percent expression
-
getLabelExpression
JRExpression getLabelExpression()
- Returns:
- the label expression
-
getItemHyperlink
JRHyperlink getItemHyperlink()
Returns the hyperlink specification for chart items.The hyperlink will be evaluated for every chart item and an image map will be created for the chart.
- Returns:
- hyperlink specification for chart items
-
-