Package net.sf.jasperreports.charts
Interface JRValueDisplay
-
- All Superinterfaces:
java.lang.Cloneable,JRCloneable
- All Known Implementing Classes:
JRBaseValueDisplay,JRDesignValueDisplay,JRFillValueDisplay
public interface JRValueDisplay extends JRCloneable
Represents the formatting option for the textual representation of a value displayed in a Meter or Thermometer chart.- Author:
- Barry Klawans (bklawans@users.sourceforge.net)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JRValueDisplayclone(JRChart parentChart)JRChartgetChart()java.awt.ColorgetColor()Returns the color to use when writing the value.JRFontgetFont()Returns the font to use when writing the value.java.lang.StringgetMask()Returns the formatting mask to use when writing the value.-
Methods inherited from interface net.sf.jasperreports.engine.JRCloneable
clone
-
-
-
-
Method Detail
-
getChart
JRChart getChart()
-
getColor
java.awt.Color getColor()
Returns the color to use when writing the value.- Returns:
- the color to use when writing the value
-
getMask
java.lang.String getMask()
Returns the formatting mask to use when writing the value. The mask will be specified using the patterns defined injava.text.DecimalFormat.- Returns:
- the formatting mask to use when writing the value
-
getFont
JRFont getFont()
Returns the font to use when writing the value.- Returns:
- the font to use when writing the value
-
clone
JRValueDisplay clone(JRChart parentChart)
-
-