Uses of Interface
org.jfree.data.xy.XYZDataset
-
Packages that use XYZDataset Package Description org.jfree.chart Core classes for JFreeChart includingJFreeChartandChartFactory.org.jfree.chart.labels Generators and other classes used for the display of item labels and tooltips.org.jfree.chart.renderer.xy Plug-in renderers for theXYPlotclass.org.jfree.chart.urls Classes for adding URLS to charts for HTML image map generation.org.jfree.data.general Data interfaces and classes.org.jfree.data.xy A package containing theXYDatasetinterface and related classes. -
-
Uses of XYZDataset in org.jfree.chart
Methods in org.jfree.chart with parameters of type XYZDataset Modifier and Type Method Description static JFreeChartChartFactory. createBubbleChart(String title, String xAxisLabel, String yAxisLabel, XYZDataset dataset)Creates a bubble chart with default settings.static JFreeChartChartFactory. createBubbleChart(String title, String xAxisLabel, String yAxisLabel, XYZDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Creates a bubble chart with default settings. -
Uses of XYZDataset in org.jfree.chart.labels
Methods in org.jfree.chart.labels with parameters of type XYZDataset Modifier and Type Method Description protected Object[]BubbleXYItemLabelGenerator. createItemArray(XYZDataset dataset, int series, int item)Creates the array of items that can be passed to theMessageFormatclass for creating labels.protected Object[]StandardXYZToolTipGenerator. createItemArray(XYZDataset dataset, int series, int item)Creates the array of items that can be passed to theMessageFormatclass for creating labels.StringStandardXYZToolTipGenerator. generateToolTip(XYZDataset dataset, int series, int item)Generates a tool tip text item for a particular item within a series.StringXYZToolTipGenerator. generateToolTip(XYZDataset dataset, int series, int item)Generates a tool tip text item for a particular item within a series. -
Uses of XYZDataset in org.jfree.chart.renderer.xy
Methods in org.jfree.chart.renderer.xy with parameters of type XYZDataset Modifier and Type Method Description RangeXYShapeRenderer. findZBounds(XYZDataset dataset)Return the range of z-values in the specified dataset. -
Uses of XYZDataset in org.jfree.chart.urls
Methods in org.jfree.chart.urls with parameters of type XYZDataset Modifier and Type Method Description StringStandardXYZURLGenerator. generateURL(XYZDataset dataset, int series, int item)Generates a URL for a particular item within a series.StringXYZURLGenerator. generateURL(XYZDataset dataset, int series, int item)Generates a URL for a particular item within a series. -
Uses of XYZDataset in org.jfree.data.general
Methods in org.jfree.data.general with parameters of type XYZDataset Modifier and Type Method Description static <S extends Comparable<S>>
RangeDatasetUtils. findZBounds(XYZDataset<S> dataset)Returns the range of values in the z-dimension for the dataset.static <S extends Comparable<S>>
RangeDatasetUtils. findZBounds(XYZDataset<S> dataset, boolean includeInterval)Returns the range of values in the z-dimension for the dataset.static <S extends Comparable<S>>
RangeDatasetUtils. findZBounds(XYZDataset<S> dataset, List<S> visibleSeriesKeys, Range xRange, boolean includeInterval)Finds the bounds of the z-values in the specified dataset, including only those series that are listed in visibleSeriesKeys, and those items whose x-values fall within the specified range.static <S extends Comparable<S>>
RangeDatasetUtils. iterateToFindZBounds(XYZDataset<S> dataset, List<S> visibleSeriesKeys, Range xRange, boolean includeInterval)Returns the range of z-values in the specified dataset for the data items belonging to the visible series and with x-values in the given range.static <S extends Comparable<S>>
RangeDatasetUtils. iterateZBounds(XYZDataset<S> dataset)Iterates over the data item of the xyz dataset to find the z-dimension bounds.static <S extends Comparable<S>>
RangeDatasetUtils. iterateZBounds(XYZDataset<S> dataset, boolean includeInterval)Iterates over the data items of the xyz dataset to find the z-dimension bounds. -
Uses of XYZDataset in org.jfree.data.xy
Subinterfaces of XYZDataset in org.jfree.data.xy Modifier and Type Interface Description interfaceIntervalXYZDataset<S extends Comparable<S>>An extension of theXYZDatasetinterface that allows a range of data to be defined for any of the X values, the Y values, and the Z values.Classes in org.jfree.data.xy that implement XYZDataset Modifier and Type Class Description classAbstractXYZDataset<S extends Comparable<S>>An base class that you can use to create new implementations of theXYZDatasetinterface.classDefaultXYZDataset<S extends Comparable<S>>A default implementation of theXYZDatasetinterface that stores data values in arrays of double primitives.classMatrixSeriesCollection<S extends Comparable<S>>Represents a collection ofMatrixSeriesthat can be used as a dataset.
-