Uses of Class
org.jfree.chart.renderer.Outlier
-
Packages that use Outlier Package Description org.jfree.chart.renderer Core support for the plug-in renderers used by theCategoryPlot
andXYPlot
classes. -
-
Uses of Outlier in org.jfree.chart.renderer
Fields in org.jfree.chart.renderer declared as Outlier Modifier and Type Field Description private Outlier
OutlierList. averagedOutlier
The averaged outlier.Methods in org.jfree.chart.renderer that return Outlier Modifier and Type Method Description Outlier
OutlierList. getAveragedOutlier()
Returns the averaged outlier.Methods in org.jfree.chart.renderer with parameters of type Outlier Modifier and Type Method Description boolean
OutlierList. add(Outlier outlier)
Adds an outlier to the list.boolean
OutlierListCollection. add(Outlier outlier)
Appends the specified element as a newOutlierList
to the end of this list if it does not overlap an outlier in an existing list.boolean
OutlierList. isOverlapped(Outlier other)
Returnstrue
if the outlier overlaps, andfalse
otherwise.boolean
Outlier. overlaps(Outlier other)
Returns a true if outlier is overlapped and false if it is not.void
OutlierList. setAveragedOutlier(Outlier averagedOutlier)
Sets the averaged outlier.private boolean
OutlierListCollection. updateOutlierList(OutlierList list, Outlier outlier)
Updates the outlier list by adding the outlier to the end of the list and setting the averaged outlier to the average x and y coordinate values of the outliers in the list.Constructors in org.jfree.chart.renderer with parameters of type Outlier Constructor Description OutlierList(Outlier outlier)
Creates a new list containing a single outlier.
-