Uses of Class
org.jfree.chart.plot.Plot
| Package | Description | 
|---|---|
| org.jfree.chart | 
 Core classes, including  
JFreeChart and
ChartPanel. | 
| org.jfree.chart.axis | 
 Axis classes and interfaces. 
 | 
| org.jfree.chart.demo | |
| org.jfree.chart.event | 
 Event classes and listener interfaces, used to provide a change
notification mechanism so that charts are automatically redrawn
whenever changes are made to any chart component. 
 | 
| org.jfree.chart.plot | 
 Plot classes and related interfaces. 
 | 
| org.jfree.chart.ui | 
 An optional package containing user interface components for editing chart properties (used in the JFreeChart demo application); 
 | 
- 
Uses of Plot in org.jfree.chart
Methods in org.jfree.chart that return Plot Modifier and Type Method Description PlotJFreeChart. getPlot()Returns the plot for the chart.Constructors in org.jfree.chart with parameters of type Plot Constructor Description JFreeChart(String title, Font titleFont, Plot plot, boolean createLegend)Constructs a chart.JFreeChart(String title, Plot plot)Creates a new chart.JFreeChart(Plot plot)Constructs a chart. - 
Uses of Plot in org.jfree.chart.axis
Methods in org.jfree.chart.axis that return Plot Modifier and Type Method Description PlotAxis. getPlot()Returns the plot that the axis is assigned to.Methods in org.jfree.chart.axis with parameters of type Plot Modifier and Type Method Description abstract AxisSpaceAxis. reserveSpace(Graphics2D g2, Plot plot, Rectangle2D plotArea, org.jfree.ui.RectangleEdge edge, AxisSpace space, boolean isOpositeAxisVisible)Estimates the space (height or width) required to draw the axis.AxisSpaceCategoryAxis. reserveSpace(Graphics2D g2, Plot plot, Rectangle2D plotArea, org.jfree.ui.RectangleEdge edge, AxisSpace space, boolean isOpositeAxisVisible)Estimates the space required for the axis, given a specific drawing area.AxisSpaceColorBar. reserveSpace(Graphics2D g2, Plot plot, Rectangle2D plotArea, Rectangle2D dataArea, org.jfree.ui.RectangleEdge edge, AxisSpace space)Reserves the space required to draw the color bar.AxisSpaceCyclicNumberAxis. reserveSpace(Graphics2D g2, Plot plot, Rectangle2D plotArea, org.jfree.ui.RectangleEdge edge, AxisSpace space)Reserve some space on each axis side because we draw a centered label at each extremity.AxisSpaceSubCategoryAxis. reserveSpace(Graphics2D g2, Plot plot, Rectangle2D plotArea, org.jfree.ui.RectangleEdge edge, AxisSpace space)Estimates the space required for the axis, given a specific drawing area.AxisSpaceValueAxis. reserveSpace(Graphics2D g2, Plot plot, Rectangle2D plotArea, org.jfree.ui.RectangleEdge edge, AxisSpace space, boolean isOpositeAxisVisible)Returns the space required to draw the axis.voidAxis. setPlot(Plot plot)Sets a reference to the plot that the axis is assigned to. - 
Uses of Plot in org.jfree.chart.demo
Fields in org.jfree.chart.demo declared as Plot Modifier and Type Field Description PlotPanScrollZoomDemo. plot - 
Uses of Plot in org.jfree.chart.event
Methods in org.jfree.chart.event that return Plot Modifier and Type Method Description PlotPlotChangeEvent. getPlot()Returns the plot that generated the event.Constructors in org.jfree.chart.event with parameters of type Plot Constructor Description PlotChangeEvent(Plot plot)Creates a new PlotChangeEvent. - 
Uses of Plot in org.jfree.chart.plot
Subclasses of Plot in org.jfree.chart.plot Modifier and Type Class Description classCategoryPlotA general plotting class that uses data from aCategoryDatasetand renders each data item using aCategoryItemRenderer.classCombinedDomainCategoryPlotA combined category plot where the domain axis is shared.classCombinedDomainXYPlotAn extension ofXYPlotthat contains multiple subplots that share a common domain axis.classCombinedRangeCategoryPlotA combined category plot where the range axis is shared.classCombinedRangeXYPlotAn extension ofXYPlotthat contains multiple subplots that share a common range axis.classCompassPlotA specialised plot that draws a compass to indicate a direction based on the value from aValueDataset.classContourPlotA class for creating shaded contours.classFastScatterPlotA fast scatter plot.classMeterPlotA plot that displays a single value in the context of several ranges ('normal', 'warning' and 'critical').classMultiplePiePlotA plot that displays multiple pie plots using data from aCategoryDataset.classPiePlotA plot that displays data in the form of a pie chart, using data from any class that implements thePieDatasetinterface.classPiePlot3DA plot that displays data in the form of a 3D pie chart, using data from any class that implements thePieDatasetinterface.classPolarPlotPlots data that is in (theta, radius) pairs where theta equal to zero is due north and and increases clockwise.classThermometerPlotA plot that displays a single value (from aValueDataset) in a thermometer type display.classWaferMapPlotA wafer map plot.classXYPlotA general class for plotting data in the form of (x, y) pairs.Methods in org.jfree.chart.plot that return Plot Modifier and Type Method Description PlotPlot. getParent()Returns the parent plot (or null if this plot is not part of a combined plot).PlotPlot. getRootPlot()Returns the root plot.Methods in org.jfree.chart.plot with parameters of type Plot Modifier and Type Method Description voidPlot. setParent(Plot parent)Sets the parent plot. - 
Uses of Plot in org.jfree.chart.ui
Methods in org.jfree.chart.ui with parameters of type Plot Modifier and Type Method Description voidPlotPropertyEditPanel. updatePlotProperties(Plot plot)Updates the plot properties to match the properties defined on the panel.Constructors in org.jfree.chart.ui with parameters of type Plot Constructor Description PlotPropertyEditPanel(Plot plot)Standard constructor - constructs a panel for editing the properties of the specified plot.