Uses of Class
org.jfree.chart.axis.AxisLocation
-
Packages that use AxisLocation Package Description org.jfree.chart.axis Axis classes and interfaces.org.jfree.chart.plot Plot classes and related interfaces.org.jfree.chart.title Classes used to display chart titles and subtitles. -
-
Uses of AxisLocation in org.jfree.chart.axis
Fields in org.jfree.chart.axis declared as AxisLocation Modifier and Type Field Description static AxisLocationAxisLocation. BOTTOM_OR_LEFTAxis at the bottom or left.static AxisLocationAxisLocation. BOTTOM_OR_RIGHTAxis at the bottom or right.static AxisLocationAxisLocation. TOP_OR_LEFTAxis at the top or left.static AxisLocationAxisLocation. TOP_OR_RIGHTAxis at the top or right.Methods in org.jfree.chart.axis that return AxisLocation Modifier and Type Method Description AxisLocationAxisLocation. getOpposite()Returns the location that is opposite to this location.static AxisLocationAxisLocation. getOpposite(AxisLocation location)Returns the location that is opposite to the supplied location.Methods in org.jfree.chart.axis with parameters of type AxisLocation Modifier and Type Method Description static AxisLocationAxisLocation. getOpposite(AxisLocation location)Returns the location that is opposite to the supplied location. -
Uses of AxisLocation in org.jfree.chart.plot
Fields in org.jfree.chart.plot with type parameters of type AxisLocation Modifier and Type Field Description private java.util.Map<java.lang.Integer,AxisLocation>CategoryPlot. domainAxisLocationsStorage for the domain axis locations.private java.util.Map<java.lang.Integer,AxisLocation>XYPlot. domainAxisLocationsThe domain axis locations.private java.util.Map<java.lang.Integer,AxisLocation>CategoryPlot. rangeAxisLocationsStorage for the range axis locations.private java.util.Map<java.lang.Integer,AxisLocation>XYPlot. rangeAxisLocationsThe range axis location.Methods in org.jfree.chart.plot that return AxisLocation Modifier and Type Method Description AxisLocationCategoryPlot. getDomainAxisLocation()Returns the domain axis location for the primary domain axis.AxisLocationCategoryPlot. getDomainAxisLocation(int index)Returns the location for a domain axis.AxisLocationXYPlot. getDomainAxisLocation()Returns the location of the primary domain axis.AxisLocationXYPlot. getDomainAxisLocation(int index)Returns the location for a domain axis.AxisLocationCategoryPlot. getRangeAxisLocation()Returns the range axis location.AxisLocationCategoryPlot. getRangeAxisLocation(int index)Returns the location for a range axis.AxisLocationXYPlot. getRangeAxisLocation()Returns the location of the primary range axis.AxisLocationXYPlot. getRangeAxisLocation(int index)Returns the location for a range axis.Methods in org.jfree.chart.plot with parameters of type AxisLocation Modifier and Type Method Description static RectangleEdgePlot. resolveDomainAxisLocation(AxisLocation location, PlotOrientation orientation)Resolves a domain axis location for a given plot orientation.static RectangleEdgePlot. resolveRangeAxisLocation(AxisLocation location, PlotOrientation orientation)Resolves a range axis location for a given plot orientation.voidCategoryPlot. setDomainAxisLocation(int index, AxisLocation location)Sets the location for a domain axis and sends aPlotChangeEventto all registered listeners.voidCategoryPlot. setDomainAxisLocation(int index, AxisLocation location, boolean notify)Sets the location for a domain axis and sends aPlotChangeEventto all registered listeners.voidCategoryPlot. setDomainAxisLocation(AxisLocation location)Sets the location of the domain axis and sends aPlotChangeEventto all registered listeners.voidCategoryPlot. setDomainAxisLocation(AxisLocation location, boolean notify)Sets the location of the domain axis and, if requested, sends aPlotChangeEventto all registered listeners.voidXYPlot. setDomainAxisLocation(int index, AxisLocation location)Sets the location for a domain axis and sends aPlotChangeEventto all registered listeners.voidXYPlot. setDomainAxisLocation(int index, AxisLocation location, boolean notify)Sets the axis location for a domain axis and, if requested, sends aPlotChangeEventto all registered listeners.voidXYPlot. setDomainAxisLocation(AxisLocation location)Sets the location of the primary domain axis and sends aPlotChangeEventto all registered listeners.voidXYPlot. setDomainAxisLocation(AxisLocation location, boolean notify)Sets the location of the domain axis and, if requested, sends aPlotChangeEventto all registered listeners.voidCategoryPlot. setRangeAxisLocation(int index, AxisLocation location)Sets the location for a range axis and sends aPlotChangeEventto all registered listeners.voidCategoryPlot. setRangeAxisLocation(int index, AxisLocation location, boolean notify)Sets the location for a range axis and sends aPlotChangeEventto all registered listeners.voidCategoryPlot. setRangeAxisLocation(AxisLocation location)Sets the location of the range axis and sends aPlotChangeEventto all registered listeners.voidCategoryPlot. setRangeAxisLocation(AxisLocation location, boolean notify)Sets the location of the range axis and, if requested, sends aPlotChangeEventto all registered listeners.voidXYPlot. setRangeAxisLocation(int index, AxisLocation location)Sets the location for a range axis and sends aPlotChangeEventto all registered listeners.voidXYPlot. setRangeAxisLocation(int index, AxisLocation location, boolean notify)Sets the axis location for a domain axis and, if requested, sends aPlotChangeEventto all registered listeners.voidXYPlot. setRangeAxisLocation(AxisLocation location)Sets the location of the primary range axis and sends aPlotChangeEventto all registered listeners.voidXYPlot. setRangeAxisLocation(AxisLocation location, boolean notify)Sets the location of the primary range axis and, if requested, sends aPlotChangeEventto all registered listeners. -
Uses of AxisLocation in org.jfree.chart.title
Fields in org.jfree.chart.title declared as AxisLocation Modifier and Type Field Description private AxisLocationPaintScaleLegend. axisLocationThe axis location (handles both orientations, nevernull).Methods in org.jfree.chart.title that return AxisLocation Modifier and Type Method Description AxisLocationPaintScaleLegend. getAxisLocation()Returns the axis location.Methods in org.jfree.chart.title with parameters of type AxisLocation Modifier and Type Method Description voidPaintScaleLegend. setAxisLocation(AxisLocation location)Sets the axis location and sends aTitleChangeEventto all registered listeners.
-