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 Plot
JFreeChart. 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 Plot
Axis. 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 AxisSpace
Axis. 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.AxisSpace
CategoryAxis. 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.AxisSpace
ColorBar. 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.AxisSpace
CyclicNumberAxis. 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.AxisSpace
SubCategoryAxis. 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.AxisSpace
ValueAxis. reserveSpace(Graphics2D g2, Plot plot, Rectangle2D plotArea, org.jfree.ui.RectangleEdge edge, AxisSpace space, boolean isOpositeAxisVisible)
Returns the space required to draw the axis.void
Axis. 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 Plot
PanScrollZoomDemo. plot
-
Uses of Plot in org.jfree.chart.event
Methods in org.jfree.chart.event that return Plot Modifier and Type Method Description Plot
PlotChangeEvent. 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 class
CategoryPlot
A general plotting class that uses data from aCategoryDataset
and renders each data item using aCategoryItemRenderer
.class
CombinedDomainCategoryPlot
A combined category plot where the domain axis is shared.class
CombinedDomainXYPlot
An extension ofXYPlot
that contains multiple subplots that share a common domain axis.class
CombinedRangeCategoryPlot
A combined category plot where the range axis is shared.class
CombinedRangeXYPlot
An extension ofXYPlot
that contains multiple subplots that share a common range axis.class
CompassPlot
A specialised plot that draws a compass to indicate a direction based on the value from aValueDataset
.class
ContourPlot
A class for creating shaded contours.class
FastScatterPlot
A fast scatter plot.class
MeterPlot
A plot that displays a single value in the context of several ranges ('normal', 'warning' and 'critical').class
MultiplePiePlot
A plot that displays multiple pie plots using data from aCategoryDataset
.class
PiePlot
A plot that displays data in the form of a pie chart, using data from any class that implements thePieDataset
interface.class
PiePlot3D
A plot that displays data in the form of a 3D pie chart, using data from any class that implements thePieDataset
interface.class
PolarPlot
Plots data that is in (theta, radius) pairs where theta equal to zero is due north and and increases clockwise.class
ThermometerPlot
A plot that displays a single value (from aValueDataset
) in a thermometer type display.class
WaferMapPlot
A wafer map plot.class
XYPlot
A 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 Plot
Plot. getParent()
Returns the parent plot (or null if this plot is not part of a combined plot).Plot
Plot. getRootPlot()
Returns the root plot.Methods in org.jfree.chart.plot with parameters of type Plot Modifier and Type Method Description void
Plot. 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 void
PlotPropertyEditPanel. 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.