Uses of Interface
org.jfree.data.ContourDataset
Package | Description |
---|---|
org.jfree.chart.labels |
Generators and other classes used for the display of item labels and tooltips.
|
org.jfree.chart.plot |
Plot classes and related interfaces.
|
org.jfree.data |
Data interfaces and classes.
|
-
Uses of ContourDataset in org.jfree.chart.labels
Methods in org.jfree.chart.labels with parameters of type ContourDataset Modifier and Type Method Description String
ContourToolTipGenerator. generateToolTip(ContourDataset data, int item)
Generates a tooltip text item for a particular item within a series.String
StandardContourToolTipGenerator. generateToolTip(ContourDataset data, int item)
Generates a tooltip text item for a particular item within a series. -
Uses of ContourDataset in org.jfree.chart.plot
Methods in org.jfree.chart.plot that return ContourDataset Modifier and Type Method Description ContourDataset
ContourPlot. getContourDataset()
Deprecated.Use the getDataset() method instead.ContourDataset
ContourPlot. getDataset()
Returns the primary dataset for the plot.Methods in org.jfree.chart.plot with parameters of type ContourDataset Modifier and Type Method Description void
ContourPlot. contourRenderer(Graphics2D g2, Rectangle2D dataArea, PlotRenderingInfo info, ContourPlot plot, ValueAxis horizontalAxis, ValueAxis verticalAxis, ColorBar colorBar, ContourDataset data, CrosshairState crosshairState)
Fills the plot.void
ContourPlot. pointRenderer(Graphics2D g2, Rectangle2D dataArea, PlotRenderingInfo info, ContourPlot plot, ValueAxis domainAxis, ValueAxis rangeAxis, ColorBar colorBar, ContourDataset data, CrosshairState crosshairState)
Draws the visual representation of a single data item.void
ContourPlot. setDataset(ContourDataset dataset)
Sets the dataset for the plot, replacing the existing dataset if there is one.Range
ContourPlot. visibleRange(ContourDataset data, Range x, Range y)
Returns the visible z-range.static Range
ContourPlotUtilities. visibleRange(ContourDataset data, Range x, Range y)
Returns the visible z-range.Constructors in org.jfree.chart.plot with parameters of type ContourDataset Constructor Description ContourPlot(ContourDataset dataset, ValueAxis domainAxis, ValueAxis rangeAxis, ColorBar colorBar)
Constructs a contour plot with the specified axes (other attributes take default values). -
Uses of ContourDataset in org.jfree.data
Classes in org.jfree.data that implement ContourDataset Modifier and Type Class Description class
DefaultContourDataset
A convenience class that provides a default implementation of theContourDataset
interface.class
NonGridContourDataset
A convenience class that extends theDefaultContourDataset
to acommadate non-grid data.