Package net.sf.jasperreports.charts
Interface JRHighLowPlot
-
- All Superinterfaces:
Cloneable
,JRChartPlot
,JRCloneable
,JRTimeAxisFormat
,JRValueAxisFormat
- All Known Implementing Classes:
JRBaseHighLowPlot
,JRDesignHighLowPlot
,JRFillHighLowPlot
public interface JRHighLowPlot extends JRChartPlot, JRTimeAxisFormat, JRValueAxisFormat
Used only in combination with High-Low charts, this type of plot lets users customize the labels for both axes, like all the other axis-oriented plots.
This special type of plot draws the items as vertical lines that start at the high value and go downward to the low value. On each line the plot displays by default small ticks to indicate the open and close values corresponding to the current item. To suppress these ticks, set to false the two flags available inside the plot definition:isShowCloseTicks
andisShowOpenTicks
.- Author:
- Ionut Nedelcu (ionutned@users.sourceforge.net)
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface net.sf.jasperreports.charts.JRChartPlot
JRChartPlot.JRSeriesColor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JRExpression
getDomainAxisMaxValueExpression()
JRExpression
getDomainAxisMinValueExpression()
JRExpression
getRangeAxisMaxValueExpression()
JRExpression
getRangeAxisMinValueExpression()
Boolean
getShowCloseTicks()
Boolean
getShowOpenTicks()
JRExpression
getTimeAxisLabelExpression()
JRExpression
getValueAxisLabelExpression()
-
Methods inherited from interface net.sf.jasperreports.charts.JRChartPlot
addSeriesColor, clearSeriesColors, clone, collectExpressions, getBackcolor, getBackgroundAlpha, getChart, getForegroundAlpha, getLabelRotation, getOrientation, getOwnBackcolor, getSeriesColors, setBackcolor, setBackgroundAlpha, setForegroundAlpha, setLabelRotation, setOrientation, setSeriesColors
-
Methods inherited from interface net.sf.jasperreports.engine.JRCloneable
clone
-
Methods inherited from interface net.sf.jasperreports.charts.JRTimeAxisFormat
getOwnTimeAxisLabelColor, getOwnTimeAxisLineColor, getOwnTimeAxisTickLabelColor, getTimeAxisLabelColor, getTimeAxisLabelFont, getTimeAxisLineColor, getTimeAxisTickLabelColor, getTimeAxisTickLabelFont, getTimeAxisTickLabelMask, getTimeAxisVerticalTickLabels
-
Methods inherited from interface net.sf.jasperreports.charts.JRValueAxisFormat
getOwnValueAxisLabelColor, getOwnValueAxisLineColor, getOwnValueAxisTickLabelColor, getValueAxisLabelColor, getValueAxisLabelFont, getValueAxisLineColor, getValueAxisTickLabelColor, getValueAxisTickLabelFont, getValueAxisTickLabelMask, getValueAxisVerticalTickLabels
-
-
-
-
Method Detail
-
getTimeAxisLabelExpression
JRExpression getTimeAxisLabelExpression()
-
getValueAxisLabelExpression
JRExpression getValueAxisLabelExpression()
-
getDomainAxisMinValueExpression
JRExpression getDomainAxisMinValueExpression()
-
getDomainAxisMaxValueExpression
JRExpression getDomainAxisMaxValueExpression()
-
getRangeAxisMinValueExpression
JRExpression getRangeAxisMinValueExpression()
-
getRangeAxisMaxValueExpression
JRExpression getRangeAxisMaxValueExpression()
-
getShowOpenTicks
Boolean getShowOpenTicks()
-
getShowCloseTicks
Boolean getShowCloseTicks()
-
-