Uses of Interface
org.jfree.data.xy.IntervalXYDataset
-
Packages that use IntervalXYDataset Package Description org.jfree.chart Core classes for JFreeChart includingJFreeChartandChartFactory.org.jfree.chart.renderer.xy Plug-in renderers for theXYPlotclass.org.jfree.data.gantt Data interfaces and classes for Gantt charts.org.jfree.data.statistics Classes for representing statistical data.org.jfree.data.time Interfaces and classes for time-related data.org.jfree.data.xy A package containing theXYDatasetinterface and related classes. -
-
Uses of IntervalXYDataset in org.jfree.chart
Methods in org.jfree.chart with parameters of type IntervalXYDataset Modifier and Type Method Description static JFreeChartChartFactory. createHistogram(String title, String xAxisLabel, String yAxisLabel, IntervalXYDataset dataset)Creates a histogram chart.static JFreeChartChartFactory. createHistogram(String title, String xAxisLabel, String yAxisLabel, IntervalXYDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Creates a histogram chart.static JFreeChartChartFactory. createXYBarChart(String title, String xAxisLabel, boolean dateAxis, String yAxisLabel, IntervalXYDataset dataset)Creates and returns a default instance of an XY bar chart.static JFreeChartChartFactory. createXYBarChart(String title, String xAxisLabel, boolean dateAxis, String yAxisLabel, IntervalXYDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Creates and returns a default instance of an XY bar chart. -
Uses of IntervalXYDataset in org.jfree.chart.renderer.xy
Methods in org.jfree.chart.renderer.xy with parameters of type IntervalXYDataset Modifier and Type Method Description protected RangeClusteredXYBarRenderer. findDomainBoundsWithOffset(IntervalXYDataset dataset)Iterates over the items in anIntervalXYDatasetto find the range of x-values including the interval OFFSET so that it centers the interval around the start value. -
Uses of IntervalXYDataset in org.jfree.data.gantt
Classes in org.jfree.data.gantt that implement IntervalXYDataset Modifier and Type Class Description classXYTaskDatasetA dataset implementation that wraps aTaskSeriesCollectionand presents it as anIntervalXYDataset, allowing a set of tasks to be displayed using anXYBarRenderer(and usually aSymbolAxis). -
Uses of IntervalXYDataset in org.jfree.data.statistics
Classes in org.jfree.data.statistics that implement IntervalXYDataset Modifier and Type Class Description classHistogramDatasetA dataset that can be used for creating histograms.classSimpleHistogramDataset<K extends Comparable<K>>A dataset used for creating simple histograms with custom defined bins. -
Uses of IntervalXYDataset in org.jfree.data.time
Classes in org.jfree.data.time that implement IntervalXYDataset Modifier and Type Class Description classDynamicTimeSeriesCollectionA dynamic dataset.classTimePeriodValuesCollectionA collection ofTimePeriodValuesobjects.classTimeSeriesCollection<S extends Comparable<S>>A collection of time series objects.classTimeTableXYDatasetA dataset for regular time periods that implements theTableXYDatasetinterface. -
Uses of IntervalXYDataset in org.jfree.data.xy
Classes in org.jfree.data.xy that implement IntervalXYDataset Modifier and Type Class Description classAbstractIntervalXYDataset<S extends Comparable<S>>An base class that you can use to create new implementations of theIntervalXYDatasetinterface.classCategoryTableXYDatasetAn implementation variant of theTableXYDatasetwhere every series shares the same x-values (required for generating stacked area charts).classDefaultIntervalXYDataset<S extends Comparable<S>>A dataset that defines a range (interval) for both the x-values and the y-values.classDefaultTableXYDataset<S extends Comparable<S>>AnXYDatasetwhere every series shares the same x-values (required for generating stacked area charts).classXIntervalSeriesCollection<S extends Comparable<S>>A collection ofXIntervalSeriesobjects.classXYBarDataset<S extends Comparable<S>>A dataset wrapper class that converts a standardXYDatasetinto anIntervalXYDatasetsuitable for use in creating XY bar charts.classXYIntervalSeriesCollection<S extends Comparable<S>>A collection ofXYIntervalSeriesobjects.classXYSeriesCollection<S extends Comparable<S>>Represents a collection ofXYSeriesobjects that can be used as a dataset.classYIntervalSeriesCollection<S extends Comparable<S>>A collection ofYIntervalSeriesobjects.
-