Uses of Enum
org.jfree.chart.ui.Layer
Package
Description
Plot classes and related interfaces.
Plug-in renderers for the
XYPlot
class.Utility classes that relate to user interface items.
-
Uses of Layer in org.jfree.chart.plot
Modifier and TypeMethodDescriptionvoid
CategoryPlot.addDomainMarker
(int index, CategoryMarker marker, Layer layer) Adds a marker for display by a particular renderer and sends aPlotChangeEvent
to all registered listeners.void
CategoryPlot.addDomainMarker
(int index, CategoryMarker marker, Layer layer, boolean notify) Adds a marker for display by a particular renderer and, if requested, sends aPlotChangeEvent
to all registered listeners.void
CategoryPlot.addDomainMarker
(CategoryMarker marker, Layer layer) Adds a marker for display against the domain axis and sends aPlotChangeEvent
to all registered listeners.void
XYPlot.addDomainMarker
(int index, Marker marker, Layer layer) Adds a marker for a specific dataset/renderer and sends aPlotChangeEvent
to all registered listeners.void
XYPlot.addDomainMarker
(int index, Marker marker, Layer layer, boolean notify) Adds a marker for a specific dataset/renderer and, if requested, sends aPlotChangeEvent
to all registered listeners.void
XYPlot.addDomainMarker
(Marker marker, Layer layer) Adds a marker for the domain axis in the specified layer and sends aPlotChangeEvent
to all registered listeners.void
CategoryPlot.addRangeMarker
(int index, Marker marker, Layer layer) Adds a marker for display by a particular renderer and sends aPlotChangeEvent
to all registered listeners.void
CategoryPlot.addRangeMarker
(int index, Marker marker, Layer layer, boolean notify) Adds a marker for display by a particular renderer and sends aPlotChangeEvent
to all registered listeners.void
CategoryPlot.addRangeMarker
(Marker marker, Layer layer) Adds a marker for display against the range axis and sends aPlotChangeEvent
to all registered listeners.void
XYPlot.addRangeMarker
(int index, Marker marker, Layer layer) Adds a marker for a specific dataset/renderer and sends aPlotChangeEvent
to all registered listeners.void
XYPlot.addRangeMarker
(int index, Marker marker, Layer layer, boolean notify) Adds a marker for a specific dataset/renderer and, if requested, sends aPlotChangeEvent
to all registered listeners.void
XYPlot.addRangeMarker
(Marker marker, Layer layer) Adds a marker for the range axis in the specified layer and sends aPlotChangeEvent
to all registered listeners.protected void
CategoryPlot.drawDomainMarkers
(Graphics2D g2, Rectangle2D dataArea, int index, Layer layer) Draws the domain markers (if any) for an axis and layer.protected void
XYPlot.drawDomainMarkers
(Graphics2D g2, Rectangle2D dataArea, int index, Layer layer) Draws the domain markers (if any) for an axis and layer.protected void
CategoryPlot.drawRangeMarkers
(Graphics2D g2, Rectangle2D dataArea, int index, Layer layer) Draws the range markers (if any) for an axis and layer.protected void
XYPlot.drawRangeMarkers
(Graphics2D g2, Rectangle2D dataArea, int index, Layer layer) Draws the range markers (if any) for a renderer and layer.CategoryPlot.getDomainMarkers
(int index, Layer layer) Returns a collection of domain markers for a particular renderer and layer.CategoryPlot.getDomainMarkers
(Layer layer) Returns the list of domain markers (read only) for the specified layer.XYPlot.getDomainMarkers
(int index, Layer layer) Returns a collection of domain markers for a particular renderer and layer.XYPlot.getDomainMarkers
(Layer layer) Returns the list of domain markers (read only) for the specified layer.CategoryPlot.getRangeMarkers
(int index, Layer layer) Returns a collection of range markers for a particular renderer and layer.CategoryPlot.getRangeMarkers
(Layer layer) Returns the list of range markers (read only) for the specified layer.XYPlot.getRangeMarkers
(int index, Layer layer) Returns a collection of range markers for a particular renderer and layer.XYPlot.getRangeMarkers
(Layer layer) Returns the list of range markers (read only) for the specified layer.boolean
CategoryPlot.removeDomainMarker
(int index, Marker marker, Layer layer) Removes a marker for a specific dataset/renderer and sends aPlotChangeEvent
to all registered listeners.boolean
CategoryPlot.removeDomainMarker
(int index, Marker marker, Layer layer, boolean notify) Removes a marker for a specific dataset/renderer and, if requested, sends aPlotChangeEvent
to all registered listeners.boolean
CategoryPlot.removeDomainMarker
(Marker marker, Layer layer) Removes a marker for the domain axis in the specified layer and sends aPlotChangeEvent
to all registered listeners.boolean
XYPlot.removeDomainMarker
(int index, Marker marker, Layer layer) Removes a marker for a specific dataset/renderer and sends aPlotChangeEvent
to all registered listeners.boolean
XYPlot.removeDomainMarker
(int index, Marker marker, Layer layer, boolean notify) Removes a marker for a specific dataset/renderer and, if requested, sends aPlotChangeEvent
to all registered listeners.boolean
XYPlot.removeDomainMarker
(Marker marker, Layer layer) Removes a marker for the domain axis in the specified layer and sends aPlotChangeEvent
to all registered listeners.boolean
CategoryPlot.removeRangeMarker
(int index, Marker marker, Layer layer) Removes a marker for a specific dataset/renderer and sends aPlotChangeEvent
to all registered listeners.boolean
CategoryPlot.removeRangeMarker
(int index, Marker marker, Layer layer, boolean notify) Removes a marker for a specific dataset/renderer and sends aPlotChangeEvent
to all registered listeners.boolean
CategoryPlot.removeRangeMarker
(Marker marker, Layer layer) Removes a marker for the range axis in the specified layer and sends aPlotChangeEvent
to all registered listeners.boolean
XYPlot.removeRangeMarker
(int index, Marker marker, Layer layer) Removes a marker for a specific dataset/renderer and sends aPlotChangeEvent
to all registered listeners.boolean
XYPlot.removeRangeMarker
(int index, Marker marker, Layer layer, boolean notify) Removes a marker for a specific dataset/renderer and sends aPlotChangeEvent
to all registered listeners.boolean
XYPlot.removeRangeMarker
(Marker marker, Layer layer) Removes a marker for the range axis in the specified layer and sends aPlotChangeEvent
to all registered listeners. -
Uses of Layer in org.jfree.chart.renderer.xy
Modifier and TypeMethodDescriptionvoid
AbstractXYItemRenderer.addAnnotation
(XYAnnotation annotation, Layer layer) Adds an annotation to the specified layer and sends aRendererChangeEvent
to all registered listeners.void
XYItemRenderer.addAnnotation
(XYAnnotation annotation, Layer layer) Adds an annotation to the specified layer.void
AbstractXYItemRenderer.drawAnnotations
(Graphics2D g2, Rectangle2D dataArea, ValueAxis domainAxis, ValueAxis rangeAxis, Layer layer, PlotRenderingInfo info) Draws all the annotations for the specified layer.void
XYItemRenderer.drawAnnotations
(Graphics2D g2, Rectangle2D dataArea, ValueAxis domainAxis, ValueAxis rangeAxis, Layer layer, PlotRenderingInfo info) Draws all the annotations for the specified layer. -
Uses of Layer in org.jfree.chart.ui