Uses of Class
org.jfree.chart.ui.RectangleInsets
-
Packages that use RectangleInsets Package Description org.jfree.chart Core classes, includingJFreeChart
andChartPanel
.org.jfree.chart.axis Axis classes and interfaces.org.jfree.chart.block Blocks and layout classes used extensively by theLegendTitle
class.org.jfree.chart.editor Provides a simple (but so far incomplete) framework for editing chart properties.org.jfree.chart.plot Plot classes and related interfaces.org.jfree.chart.plot.dial Classes for creating dial plots.org.jfree.chart.renderer Core support for the plug-in renderers used by theCategoryPlot
andXYPlot
classes.org.jfree.chart.renderer.category Plug-in renderers for theCategoryPlot
class.org.jfree.chart.renderer.xy Plug-in renderers for theXYPlot
class.org.jfree.chart.text Text-related classes formerly in the JCommon class library.org.jfree.chart.title Classes used to display chart titles and subtitles.org.jfree.chart.ui Utility classes that relate to user interface items. -
-
Uses of RectangleInsets in org.jfree.chart
Fields in org.jfree.chart declared as RectangleInsets Modifier and Type Field Description private RectangleInsets
StandardChartTheme. axisOffset
The axis offsets.private RectangleInsets
JFreeChart. padding
The padding between the chart border and the chart drawing area.Methods in org.jfree.chart that return RectangleInsets Modifier and Type Method Description RectangleInsets
StandardChartTheme. getAxisOffset()
Returns the axis offsets.RectangleInsets
JFreeChart. getPadding()
Returns the padding between the chart border and the chart drawing area.Methods in org.jfree.chart with parameters of type RectangleInsets Modifier and Type Method Description void
StandardChartTheme. setAxisOffset(RectangleInsets offset)
Sets the axis offset.void
JFreeChart. setPadding(RectangleInsets padding)
Sets the padding between the chart border and the chart drawing area, and sends aChartChangeEvent
to all registered listeners. -
Uses of RectangleInsets in org.jfree.chart.axis
Fields in org.jfree.chart.axis declared as RectangleInsets Modifier and Type Field Description static RectangleInsets
Axis. DEFAULT_AXIS_LABEL_INSETS
The default axis label insets (RectangleInsets(3.0, 3.0, 3.0, 3.0)
).static RectangleInsets
PeriodAxisLabelInfo. DEFAULT_INSETS
The default insets.static RectangleInsets
Axis. DEFAULT_TICK_LABEL_INSETS
The default tick label insets (RectangleInsets(2.0, 4.0, 2.0, 4.0)
).private RectangleInsets
Axis. labelInsets
The insets for the axis label.private RectangleInsets
PeriodAxisLabelInfo. padding
Controls the gaps around the band.private RectangleInsets
Axis. tickLabelInsets
The blank space around each tick label.Methods in org.jfree.chart.axis that return RectangleInsets Modifier and Type Method Description RectangleInsets
Axis. getLabelInsets()
Returns the insets for the label (that is, the amount of blank space that should be left around the label).RectangleInsets
PeriodAxisLabelInfo. getPadding()
Returns the padding for the band.RectangleInsets
Axis. getTickLabelInsets()
Returns the insets for the tick labels.Methods in org.jfree.chart.axis with parameters of type RectangleInsets Modifier and Type Method Description void
Axis. setLabelInsets(RectangleInsets insets)
Sets the insets for the axis label, and sends anAxisChangeEvent
to all registered listeners.void
Axis. setLabelInsets(RectangleInsets insets, boolean notify)
Sets the insets for the axis label, and sends anAxisChangeEvent
to all registered listeners.void
Axis. setTickLabelInsets(RectangleInsets insets)
Sets the insets for the tick labels and sends anAxisChangeEvent
to all registered listeners.Constructors in org.jfree.chart.axis with parameters of type RectangleInsets Constructor Description PeriodAxisLabelInfo(java.lang.Class periodClass, java.text.DateFormat dateFormat, RectangleInsets padding, java.awt.Font labelFont, java.awt.Paint labelPaint, boolean drawDividers, java.awt.Stroke dividerStroke, java.awt.Paint dividerPaint)
Creates a new instance. -
Uses of RectangleInsets in org.jfree.chart.block
Fields in org.jfree.chart.block declared as RectangleInsets Modifier and Type Field Description private RectangleInsets
BlockBorder. insets
The space reserved for the border.private RectangleInsets
LineBorder. insets
The insets.private RectangleInsets
AbstractBlock. margin
The margin around the outside of the block.private RectangleInsets
AbstractBlock. padding
The padding between the block content and the border.Methods in org.jfree.chart.block that return RectangleInsets Modifier and Type Method Description RectangleInsets
BlockBorder. getInsets()
Returns the space reserved for the border.RectangleInsets
BlockFrame. getInsets()
Returns the space reserved for the border.RectangleInsets
LineBorder. getInsets()
Returns the insets.RectangleInsets
AbstractBlock. getMargin()
Returns the margin.RectangleInsets
AbstractBlock. getPadding()
Returns the padding.Methods in org.jfree.chart.block with parameters of type RectangleInsets Modifier and Type Method Description void
AbstractBlock. setMargin(RectangleInsets margin)
Sets the margin (useZERO_INSETS
for no padding).void
AbstractBlock. setPadding(RectangleInsets padding)
Sets the padding (useZERO_INSETS
for no padding).Constructors in org.jfree.chart.block with parameters of type RectangleInsets Constructor Description BlockBorder(RectangleInsets insets, java.awt.Paint paint)
Creates a new border.LineBorder(java.awt.Paint paint, java.awt.Stroke stroke, RectangleInsets insets)
Creates a new border with the specified color. -
Uses of RectangleInsets in org.jfree.chart.editor
Fields in org.jfree.chart.editor declared as RectangleInsets Modifier and Type Field Description private RectangleInsets
DefaultAxisEditor. labelInsets
The label insets.private RectangleInsets
DefaultPlotEditor. plotInsets
The insets for the plot.private RectangleInsets
DefaultAxisEditor. tickLabelInsets
The tick label insets.Methods in org.jfree.chart.editor that return RectangleInsets Modifier and Type Method Description RectangleInsets
DefaultAxisEditor. getLabelInsets()
Returns the current label insets valueRectangleInsets
DefaultPlotEditor. getPlotInsets()
Returns the current plot insets.RectangleInsets
DefaultAxisEditor. getTickLabelInsets()
Returns the current tick label insets value -
Uses of RectangleInsets in org.jfree.chart.plot
Fields in org.jfree.chart.plot declared as RectangleInsets Modifier and Type Field Description private RectangleInsets
CategoryPlot. axisOffset
The offset between the data area and the axes.private RectangleInsets
XYPlot. axisOffset
The offset between the data area and the axes.static RectangleInsets
Plot. DEFAULT_INSETS
The default insets.private RectangleInsets
Plot. insets
Amount of blank space around the plot area.private RectangleInsets
Marker. labelOffset
The label offset from the marker rectangle.private RectangleInsets
PiePlot. labelPadding
The padding between the labels and the label outlines.private RectangleInsets
ThermometerPlot. padding
Blank space inside the plot area around the outside of the thermometer.private RectangleInsets
PiePlot. simpleLabelOffset
The simple label offset.Methods in org.jfree.chart.plot that return RectangleInsets Modifier and Type Method Description RectangleInsets
CategoryPlot. getAxisOffset()
Returns the axis offset.RectangleInsets
XYPlot. getAxisOffset()
Returns the axis offset.RectangleInsets
Plot. getInsets()
Returns the insets for the plot area.RectangleInsets
Marker. getLabelOffset()
Returns the label offset.RectangleInsets
PiePlot. getLabelPadding()
Returns the label padding.RectangleInsets
ThermometerPlot. getPadding()
Returns the padding for the thermometer.RectangleInsets
PiePlot. getSimpleLabelOffset()
Returns the offset used for the simple labels, if they are displayed.Methods in org.jfree.chart.plot with parameters of type RectangleInsets Modifier and Type Method Description void
CategoryPlot. setAxisOffset(RectangleInsets offset)
Sets the axis offsets (gap between the data area and the axes) and sends aPlotChangeEvent
to all registered listeners.void
XYPlot. setAxisOffset(RectangleInsets offset)
Sets the axis offsets (gap between the data area and the axes) and sends aPlotChangeEvent
to all registered listeners.void
Plot. setInsets(RectangleInsets insets)
Sets the insets for the plot and sends aPlotChangeEvent
to all registered listeners.void
Plot. setInsets(RectangleInsets insets, boolean notify)
Sets the insets for the plot and, if requested, and sends aPlotChangeEvent
to all registered listeners.void
Marker. setLabelOffset(RectangleInsets offset)
Sets the label offset and sends aMarkerChangeEvent
to all registered listeners.void
PiePlot. setLabelPadding(RectangleInsets padding)
Sets the padding between each label and its outline and sends aPlotChangeEvent
to all registered listeners.void
ThermometerPlot. setPadding(RectangleInsets padding)
Sets the padding for the thermometer and sends aPlotChangeEvent
to all registered listeners.void
PiePlot. setSimpleLabelOffset(RectangleInsets offset)
Sets the offset for the simple labels and sends aPlotChangeEvent
to all registered listeners. -
Uses of RectangleInsets in org.jfree.chart.plot.dial
Fields in org.jfree.chart.plot.dial declared as RectangleInsets Modifier and Type Field Description private RectangleInsets
DialValueIndicator. insets
The insets.Methods in org.jfree.chart.plot.dial that return RectangleInsets Modifier and Type Method Description RectangleInsets
DialValueIndicator. getInsets()
Returns the insets.Methods in org.jfree.chart.plot.dial with parameters of type RectangleInsets Modifier and Type Method Description void
DialValueIndicator. setInsets(RectangleInsets insets)
Sets the insets and sends aDialLayerChangeEvent
to all registered listeners. -
Uses of RectangleInsets in org.jfree.chart.renderer
Fields in org.jfree.chart.renderer declared as RectangleInsets Modifier and Type Field Description static RectangleInsets
AbstractRenderer. DEFAULT_ITEM_LABEL_INSETS
The default item label insets.private RectangleInsets
AbstractRenderer. itemLabelInsets
The item label insets.Methods in org.jfree.chart.renderer that return RectangleInsets Modifier and Type Method Description RectangleInsets
AbstractRenderer. getItemLabelInsets()
Returns the item label insets.Methods in org.jfree.chart.renderer with parameters of type RectangleInsets Modifier and Type Method Description void
AbstractRenderer. setItemLabelInsets(RectangleInsets itemLabelInsets)
Sets the item label insets. -
Uses of RectangleInsets in org.jfree.chart.renderer.category
Methods in org.jfree.chart.renderer.category with parameters of type RectangleInsets Modifier and Type Method Description protected java.awt.geom.Point2D
AbstractCategoryItemRenderer. calculateDomainMarkerTextAnchorPoint(java.awt.Graphics2D g2, PlotOrientation orientation, java.awt.geom.Rectangle2D dataArea, java.awt.geom.Rectangle2D markerArea, RectangleInsets markerOffset, LengthAdjustmentType labelOffsetType, RectangleAnchor anchor)
Calculates the(x, y)
coordinates for drawing the label for a marker on the range axis.protected java.awt.geom.Point2D
AbstractCategoryItemRenderer. calculateRangeMarkerTextAnchorPoint(java.awt.Graphics2D g2, PlotOrientation orientation, java.awt.geom.Rectangle2D dataArea, java.awt.geom.Rectangle2D markerArea, RectangleInsets markerOffset, LengthAdjustmentType labelOffsetType, RectangleAnchor anchor)
Calculates the (x, y) coordinates for drawing a marker label. -
Uses of RectangleInsets in org.jfree.chart.renderer.xy
Methods in org.jfree.chart.renderer.xy with parameters of type RectangleInsets Modifier and Type Method Description protected java.awt.geom.Point2D
AbstractXYItemRenderer. calculateDomainMarkerTextAnchorPoint(java.awt.Graphics2D g2, PlotOrientation orientation, java.awt.geom.Rectangle2D dataArea, java.awt.geom.Rectangle2D markerArea, RectangleInsets markerOffset, LengthAdjustmentType labelOffsetType, RectangleAnchor anchor)
Calculates the(x, y)
coordinates for drawing a marker label.private java.awt.geom.Point2D
AbstractXYItemRenderer. calculateRangeMarkerTextAnchorPoint(java.awt.Graphics2D g2, PlotOrientation orientation, java.awt.geom.Rectangle2D dataArea, java.awt.geom.Rectangle2D markerArea, RectangleInsets markerOffset, LengthAdjustmentType labelOffsetForRange, RectangleAnchor anchor)
Calculates the (x, y) coordinates for drawing a marker label. -
Uses of RectangleInsets in org.jfree.chart.text
Fields in org.jfree.chart.text declared as RectangleInsets Modifier and Type Field Description private RectangleInsets
TextBox. interiorGap
The interior space.Methods in org.jfree.chart.text that return RectangleInsets Modifier and Type Method Description RectangleInsets
TextBox. getInteriorGap()
Returns the interior gap.Methods in org.jfree.chart.text with parameters of type RectangleInsets Modifier and Type Method Description void
TextBox. setInteriorGap(RectangleInsets gap)
Sets the interior gap. -
Uses of RectangleInsets in org.jfree.chart.title
Fields in org.jfree.chart.title declared as RectangleInsets Modifier and Type Field Description static RectangleInsets
Title. DEFAULT_PADDING
Default title padding.private RectangleInsets
LegendTitle. itemLabelPadding
The padding for the item labels.private RectangleInsets
LegendTitle. legendItemGraphicPadding
The padding for the legend item graphic.Methods in org.jfree.chart.title that return RectangleInsets Modifier and Type Method Description RectangleInsets
LegendTitle. getItemLabelPadding()
Returns the padding used for the items labels.RectangleInsets
LegendTitle. getLegendItemGraphicPadding()
Returns the padding that will be applied to each item graphic.Methods in org.jfree.chart.title with parameters of type RectangleInsets Modifier and Type Method Description void
LegendTitle. setItemLabelPadding(RectangleInsets padding)
Sets the padding used for the item labels in the legend.void
LegendTitle. setLegendItemGraphicPadding(RectangleInsets padding)
Sets the padding that will be applied to each item graphic in the legend and sends aTitleChangeEvent
to all registered listeners.Constructors in org.jfree.chart.title with parameters of type RectangleInsets Constructor Description DateTitle(int style, java.util.Locale locale, java.awt.Font font, java.awt.Paint paint, RectangleEdge position, HorizontalAlignment horizontalAlignment, VerticalAlignment verticalAlignment, RectangleInsets padding)
Creates a new chart title that displays the current date.ImageTitle(java.awt.Image image, int height, int width, RectangleEdge position, HorizontalAlignment horizontalAlignment, VerticalAlignment verticalAlignment, RectangleInsets padding)
Creates a new image title with the given image scaled to the given width and height in the given location.TextTitle(java.lang.String text, java.awt.Font font, java.awt.Paint paint, RectangleEdge position, HorizontalAlignment horizontalAlignment, VerticalAlignment verticalAlignment, RectangleInsets padding)
Creates a new title.Title(RectangleEdge position, HorizontalAlignment horizontalAlignment, VerticalAlignment verticalAlignment, RectangleInsets padding)
Creates a new title. -
Uses of RectangleInsets in org.jfree.chart.ui
Fields in org.jfree.chart.ui declared as RectangleInsets Modifier and Type Field Description static RectangleInsets
RectangleInsets. ZERO_INSETS
A useful constant representing zero insets.
-