Uses of Interface
org.jfree.chart.annotations.XYAnnotation
-
Packages that use XYAnnotation Package Description org.jfree.chart Core classes, includingJFreeChart
andChartPanel
.org.jfree.chart.annotations A framework for adding annotations to charts.org.jfree.chart.plot Plot classes and related interfaces.org.jfree.chart.renderer.xy Plug-in renderers for theXYPlot
class. -
-
Uses of XYAnnotation in org.jfree.chart
Methods in org.jfree.chart with parameters of type XYAnnotation Modifier and Type Method Description protected void
StandardChartTheme. applyToXYAnnotation(XYAnnotation annotation)
Applies the settings of this theme to the specified annotation. -
Uses of XYAnnotation in org.jfree.chart.annotations
Classes in org.jfree.chart.annotations that implement XYAnnotation Modifier and Type Class Description class
AbstractXYAnnotation
The interface that must be supported by annotations that are to be added to anXYPlot
.class
XYBoxAnnotation
A box annotation that can be placed on anXYPlot
.class
XYDataImageAnnotation
An annotation that allows an image to be placed within a rectangle specified in data coordinates on anXYPlot
.class
XYDataRangeAnnotation
This annotation can be put on anXYPlot
to ensure a visible data range.class
XYDrawableAnnotation
A general annotation that can be placed on anXYPlot
.class
XYImageAnnotation
An annotation that allows an image to be placed at some location on anXYPlot
.class
XYInversePointerAnnotation
An arrow and label that can be placed on anXYPlot
.class
XYLineAnnotation
A simple line annotation that can be placed on anXYPlot
.class
XYNoteAnnotation
An line and label that can be placed on anXYPlot
.class
XYPointerAnnotation
An arrow and label that can be placed on anXYPlot
.class
XYPolygonAnnotation
A polygon annotation that can be placed on anXYPlot
.class
XYShapeAnnotation
A simpleShape
annotation that can be placed on anXYPlot
.class
XYTextAnnotation
A text annotation that can be placed at a particular (x, y) location on anXYPlot
.class
XYTitleAnnotation
-
Uses of XYAnnotation in org.jfree.chart.plot
Fields in org.jfree.chart.plot with type parameters of type XYAnnotation Modifier and Type Field Description private java.util.List<XYAnnotation>
XYPlot. annotations
A (possibly empty) list of annotations for the plot.Methods in org.jfree.chart.plot that return types with arguments of type XYAnnotation Modifier and Type Method Description java.util.List<XYAnnotation>
XYPlot. getAnnotations()
Returns the list of annotations.Methods in org.jfree.chart.plot with parameters of type XYAnnotation Modifier and Type Method Description void
XYPlot. addAnnotation(XYAnnotation annotation)
Adds an annotation to the plot and sends aPlotChangeEvent
to all registered listeners.void
XYPlot. addAnnotation(XYAnnotation annotation, boolean notify)
Adds an annotation to the plot and, if requested, sends aPlotChangeEvent
to all registered listeners.boolean
XYPlot. removeAnnotation(XYAnnotation annotation)
Removes an annotation from the plot and sends aPlotChangeEvent
to all registered listeners.boolean
XYPlot. removeAnnotation(XYAnnotation annotation, boolean notify)
Removes an annotation from the plot and sends aPlotChangeEvent
to all registered listeners. -
Uses of XYAnnotation in org.jfree.chart.renderer.xy
Methods in org.jfree.chart.renderer.xy with parameters of type XYAnnotation Modifier and Type Method Description void
AbstractXYItemRenderer. addAnnotation(XYAnnotation annotation)
Adds an annotation and sends aRendererChangeEvent
to all registered listeners.void
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)
Adds an annotation and sends aRendererChangeEvent
to all registered listeners.void
XYItemRenderer. addAnnotation(XYAnnotation annotation, Layer layer)
Adds an annotation to the specified layer.boolean
AbstractXYItemRenderer. removeAnnotation(XYAnnotation annotation)
Removes the specified annotation and sends aRendererChangeEvent
to all registered listeners.boolean
XYItemRenderer. removeAnnotation(XYAnnotation annotation)
Removes the specified annotation and sends aRendererChangeEvent
to all registered listeners.
-