Package net.sf.jasperreports.charts
Interface JRCategoryAxisFormat
-
- All Known Subinterfaces:
JRAreaPlot,JRBar3DPlot,JRBarPlot,JRCategoryPlot,JRLinePlot
- All Known Implementing Classes:
JRBaseAreaPlot,JRBaseBar3DPlot,JRBaseBarPlot,JRBaseLinePlot,JRDesignAreaPlot,JRDesignBar3DPlot,JRDesignBarPlot,JRDesignLinePlot,JRFillAreaPlot,JRFillBar3DPlot,JRFillBarPlot,JRFillLinePlot
public interface JRCategoryAxisFormat- Author:
- Teodor Danciu (teodord@users.sourceforge.net)
-
-
Field Summary
Fields Modifier and Type Field Description static StringPROPERTY_CATEGORY_AXIS_TICK_LABEL_ROTATION
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ColorgetCategoryAxisLabelColor()JRFontgetCategoryAxisLabelFont()ColorgetCategoryAxisLineColor()ColorgetCategoryAxisTickLabelColor()JRFontgetCategoryAxisTickLabelFont()StringgetCategoryAxisTickLabelMask()DoublegetCategoryAxisTickLabelRotation()Gets the angle in degrees to rotate the data axis labels.BooleangetCategoryAxisVerticalTickLabels()ColorgetOwnCategoryAxisLabelColor()ColorgetOwnCategoryAxisLineColor()ColorgetOwnCategoryAxisTickLabelColor()voidsetCategoryAxisTickLabelRotation(Double labelRotation)Sets the angle in degrees to rotate the data axis labels.
-
-
-
Field Detail
-
PROPERTY_CATEGORY_AXIS_TICK_LABEL_ROTATION
static final String PROPERTY_CATEGORY_AXIS_TICK_LABEL_ROTATION
- See Also:
- Constant Field Values
-
-
Method Detail
-
getCategoryAxisLabelFont
JRFont getCategoryAxisLabelFont()
-
getCategoryAxisLabelColor
Color getCategoryAxisLabelColor()
-
getOwnCategoryAxisLabelColor
Color getOwnCategoryAxisLabelColor()
-
getCategoryAxisTickLabelFont
JRFont getCategoryAxisTickLabelFont()
-
getCategoryAxisTickLabelColor
Color getCategoryAxisTickLabelColor()
-
getOwnCategoryAxisTickLabelColor
Color getOwnCategoryAxisTickLabelColor()
-
getCategoryAxisTickLabelMask
String getCategoryAxisTickLabelMask()
-
getCategoryAxisVerticalTickLabels
Boolean getCategoryAxisVerticalTickLabels()
-
getCategoryAxisLineColor
Color getCategoryAxisLineColor()
-
getOwnCategoryAxisLineColor
Color getOwnCategoryAxisLineColor()
-
getCategoryAxisTickLabelRotation
Double getCategoryAxisTickLabelRotation()
Gets the angle in degrees to rotate the data axis labels. The range is -360 to 360. A positive value angles the label so it reads downwards wile a negative value angles the label so it reads upwards. Only charts that use a category based axis (such as line or bar charts) support label rotation.
-
setCategoryAxisTickLabelRotation
void setCategoryAxisTickLabelRotation(Double labelRotation)
Sets the angle in degrees to rotate the data axis labels. The range is -360 to 360. A positive value angles the label so it reads downwards wile a negative value angles the label so it reads upwards. Only charts that use a category based axis (such as line or bar charts) support label rotation.
-
-