Uses of Interface
org.jfree.chart.annotations.XYAnnotation
-
Packages that use XYAnnotation Package Description org.jfree.chart Core classes for JFreeChart includingJFreeChartandChartFactory.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 theXYPlotclass. -
-
Uses of XYAnnotation in org.jfree.chart
Methods in org.jfree.chart with parameters of type XYAnnotation Modifier and Type Method Description protected voidStandardChartTheme. 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 classAbstractXYAnnotationThe interface that must be supported by annotations that are to be added to anXYPlot.classXYBoxAnnotationA box annotation that can be placed on anXYPlot.classXYDataImageAnnotationAn annotation that allows an image to be placed within a rectangle specified in data coordinates on anXYPlot.classXYDrawableAnnotationA general annotation that can be placed on anXYPlot.classXYImageAnnotationAn annotation that allows an image to be placed at some location on anXYPlot.classXYLineAnnotationA simple line annotation that can be placed on anXYPlot.classXYPointerAnnotationAn arrow and label that can be placed on anXYPlot.classXYPolygonAnnotationA polygon annotation that can be placed on anXYPlot.classXYShapeAnnotationA simpleShapeannotation that can be placed on anXYPlot.classXYTextAnnotationA text annotation that can be placed at a particular (x, y) location on anXYPlot.classXYTitleAnnotation -
Uses of XYAnnotation in org.jfree.chart.plot
Methods in org.jfree.chart.plot that return types with arguments of type XYAnnotation Modifier and Type Method Description 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 voidXYPlot. addAnnotation(XYAnnotation annotation)Adds an annotation to the plot and sends aPlotChangeEventto all registered listeners.voidXYPlot. addAnnotation(XYAnnotation annotation, boolean notify)Adds an annotation to the plot and, if requested, sends aPlotChangeEventto all registered listeners.booleanXYPlot. removeAnnotation(XYAnnotation annotation)Removes an annotation from the plot and sends aPlotChangeEventto all registered listeners.booleanXYPlot. removeAnnotation(XYAnnotation annotation, boolean notify)Removes an annotation from the plot and sends aPlotChangeEventto all registered listeners. -
Uses of XYAnnotation in org.jfree.chart.renderer.xy
Methods in org.jfree.chart.renderer.xy that return types with arguments of type XYAnnotation Modifier and Type Method Description Collection<XYAnnotation>AbstractXYItemRenderer. getAnnotations()Returns a collection of the annotations that are assigned to the renderer.Collection<XYAnnotation>XYItemRenderer. getAnnotations()Returns the annotations for the renderer.Methods in org.jfree.chart.renderer.xy with parameters of type XYAnnotation Modifier and Type Method Description voidAbstractXYItemRenderer. addAnnotation(XYAnnotation annotation)Adds an annotation and sends aRendererChangeEventto all registered listeners.voidAbstractXYItemRenderer. addAnnotation(XYAnnotation annotation, Layer layer)Adds an annotation to the specified layer and sends aRendererChangeEventto all registered listeners.voidXYItemRenderer. addAnnotation(XYAnnotation annotation)Adds an annotation and sends aRendererChangeEventto all registered listeners.voidXYItemRenderer. addAnnotation(XYAnnotation annotation, Layer layer)Adds an annotation to the specified layer.booleanAbstractXYItemRenderer. removeAnnotation(XYAnnotation annotation)Removes the specified annotation and sends aRendererChangeEventto all registered listeners.booleanXYItemRenderer. removeAnnotation(XYAnnotation annotation)Removes the specified annotation and sends aRendererChangeEventto all registered listeners.
-