Package net.sf.jasperreports.charts
Interface JRItemLabel
-
- All Superinterfaces:
Cloneable,JRCloneable
- All Known Implementing Classes:
JRBaseItemLabel,JRDesignItemLabel,JRFillItemLabel
public interface JRItemLabel extends JRCloneable
Contains the formatting option for the textual representation of item labels in a category plot- Author:
- Sanda Zaharia (shertage@users.sourceforge.net)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JRItemLabelclone(JRChart parentChart)Returns the item label formatting mask.ColorgetBackgroundColor()JRChartgetChart()ColorgetColor()JRFontgetFont()-
Methods inherited from interface net.sf.jasperreports.engine.JRCloneable
clone
-
-
-
-
Method Detail
-
getChart
JRChart getChart()
- Returns:
- the chart the current item label belongs to.
-
getFont
JRFont getFont()
- Returns:
- the item label font. Allows full font customization for the item label.
-
getColor
Color getColor()
- Returns:
- the item label text color
-
getBackgroundColor
Color getBackgroundColor()
- Returns:
- the item label background color
-
clone
JRItemLabel clone(JRChart parentChart)
Returns the item label formatting mask. The mask will be specified using the patterns defined injava.text.DecimalFormat.- Returns:
- the item label formatting mask
-
-