Uses of Interface
org.jfree.data.CategoryDataset
| Package | Description |
|---|---|
| de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.ipk_graffitiview.chartDrawComponent | |
| org | |
| org.jfree.chart |
Core classes, including
JFreeChart and
ChartPanel. |
| org.jfree.chart.demo | |
| org.jfree.chart.entity |
Classes representing components of (or entities in) a chart.
|
| 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.chart.renderer |
Plug-in renderers for the
CategoryPlot and XYPlot classes. |
| org.jfree.chart.urls |
Classes for adding URLS to charts for HTML image map generation.
|
| org.jfree.data |
Data interfaces and classes.
|
| org.jfree.data.gantt |
Data interfaces and classes for Gantt charts.
|
| org.jfree.data.statistics |
Classes for representing statistical data.
|
| org.jfree.data.xml |
Support for reading datasets from XML files.
|
-
Uses of CategoryDataset in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.ipk_graffitiview.chartDrawComponent
Methods in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.ipk_graffitiview.chartDrawComponent with parameters of type CategoryDataset Modifier and Type Method Description voidMyLineAndShapeRenderer. defaultDrawItem(Graphics2D g2, CategoryItemRendererState state, Rectangle2D dataArea, CategoryPlot plot, CategoryAxis domainAxis, ValueAxis rangeAxis, CategoryDataset dataset, int row, int column, boolean connectPrior)voidMyLineAndShapeRenderer. drawItem(Graphics2D g2, CategoryItemRendererState state, Rectangle2D dataArea, CategoryPlot plot, CategoryAxis domainAxis, ValueAxis rangeAxis, CategoryDataset dataset, int row, int column) -
Uses of CategoryDataset in org
Classes in org that implement CategoryDataset Modifier and Type Class Description classBioStatisticalCategoryDataset -
Uses of CategoryDataset in org.jfree.chart
Methods in org.jfree.chart with parameters of type CategoryDataset Modifier and Type Method Description static JFreeChartChartFactory. createAreaChart(String title, String categoryAxisLabel, String valueAxisLabel, CategoryDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Creates an area chart with default settings.static JFreeChartChartFactory. createBarChart(String title, String categoryAxisLabel, String valueAxisLabel, CategoryDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Creates a bar chart.static JFreeChartChartFactory. createBarChart3D(String title, String categoryAxisLabel, String valueAxisLabel, CategoryDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Creates a bar chart with a 3D effect.static JFreeChartChartFactory. createLineChart(String title, String categoryAxisLabel, String valueAxisLabel, CategoryDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Creates a line chart with default settings.static JFreeChartChartFactory. createMultiplePieChart(String title, CategoryDataset dataset, org.jfree.util.TableOrder order, boolean legend, boolean tooltips, boolean urls)Creates a chart that displays multiple pie plots.static JFreeChartChartFactory. createMultiplePieChart3D(String title, CategoryDataset dataset, org.jfree.util.TableOrder order, boolean legend, boolean tooltips, boolean urls)Creates a chart that displays multiple pie plots.static JFreeChartChartFactory. createStackedAreaChart(String title, String categoryAxisLabel, String valueAxisLabel, CategoryDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Creates a stacked area chart with default settings.static JFreeChartChartFactory. createStackedBarChart(String title, String domainAxisLabel, String rangeAxisLabel, CategoryDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Creates a stacked bar chart with default settings.static JFreeChartChartFactory. createStackedBarChart3D(String title, String categoryAxisLabel, String valueAxisLabel, CategoryDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Creates a stacked bar chart with a 3D effect and default settings.static JFreeChartChartFactory. createWaterfallChart(String title, String categoryAxisLabel, String valueAxisLabel, CategoryDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Creates a waterfall chart. -
Uses of CategoryDataset in org.jfree.chart.demo
Methods in org.jfree.chart.demo that return CategoryDataset Modifier and Type Method Description static CategoryDatasetDemoDatasetFactory. createCategoryDataset()Creates and returns aCategoryDatasetfor the demo charts.CategoryDatasetStackedAreaChartDemo. createDataset()Creates a sample dataset.CategoryDatasetCombinedCategoryPlotDemo1. createDataset1()Creates a dataset.CategoryDatasetCombinedCategoryPlotDemo2. createDataset1()Creates a dataset.CategoryDatasetCombinedCategoryPlotDemo1. createDataset2()Creates a dataset.CategoryDatasetCombinedCategoryPlotDemo2. createDataset2()Creates a dataset.static CategoryDatasetDemoDatasetFactory. createSingleCategoryDataset()Creates and returns a category dataset with JUST ONE CATEGORY for the demo charts.static CategoryDatasetDemoDatasetFactory. createSingleSeriesCategoryDataset()Creates and returns a category dataset for the demo charts.Methods in org.jfree.chart.demo with parameters of type CategoryDataset Modifier and Type Method Description JFreeChartStackedAreaChartDemo. createChart(CategoryDataset dataset)Creates a sample chart.voidExtendedStackedBarRenderer. drawItem(Graphics2D g2, CategoryItemRendererState state, Rectangle2D dataArea, CategoryPlot plot, CategoryAxis domainAxis, ValueAxis rangeAxis, CategoryDataset dataset, int row, int column)Draws a stacked bar for a specific item. -
Uses of CategoryDataset in org.jfree.chart.entity
Methods in org.jfree.chart.entity that return CategoryDataset Modifier and Type Method Description CategoryDatasetCategoryItemEntity. getDataset()Returns the datset this entity refers to.Methods in org.jfree.chart.entity with parameters of type CategoryDataset Modifier and Type Method Description voidCategoryItemEntity. setDataset(CategoryDataset dataset)Sets the datset this entity refers to.Constructors in org.jfree.chart.entity with parameters of type CategoryDataset Constructor Description CategoryItemEntity(Shape area, String toolTipText, String urlText, CategoryDataset dataset, int series, Object category, int categoryIndex)Creates a new category item entity. -
Uses of CategoryDataset in org.jfree.chart.labels
Methods in org.jfree.chart.labels with parameters of type CategoryDataset Modifier and Type Method Description StringCategoryLabelGenerator. generateLabel(CategoryDataset dataset, int series, int category)Generates a label for the specified item.StringStandardCategoryLabelGenerator. generateLabel(CategoryDataset dataset, int row, int column)Generates the label for an item in a dataset.StringCategoryToolTipGenerator. generateToolTip(CategoryDataset dataset, int row, int column)Generates the tool tip text for an item in a dataset.StringStandardCategoryToolTipGenerator. generateToolTip(CategoryDataset dataset, int row, int column)Generates the tool tip text for an item in a dataset. -
Uses of CategoryDataset in org.jfree.chart.plot
Methods in org.jfree.chart.plot that return CategoryDataset Modifier and Type Method Description CategoryDatasetCategoryPlot. getDataset()Returns the primary dataset for the plot.CategoryDatasetCategoryPlot. getDataset(int index)Returns a dataset.Methods in org.jfree.chart.plot with parameters of type CategoryDataset Modifier and Type Method Description CategoryItemRendererCategoryPlot. getRendererForDataset(CategoryDataset d)Returns the renderer for the specified dataset.voidCategoryPlot. setDataset(int index, CategoryDataset dataset)Sets a dataset for the plot.voidCategoryPlot. setDataset(CategoryDataset dataset)Sets the dataset for the plot, replacing the existing dataset, if there is one.Constructors in org.jfree.chart.plot with parameters of type CategoryDataset Constructor Description CategoryPlot(CategoryDataset dataset, CategoryAxis domainAxis, ValueAxis rangeAxis, CategoryItemRenderer renderer)Creates a new plot.MultiplePiePlot(CategoryDataset dataset)Creates a new plot. -
Uses of CategoryDataset in org.jfree.chart.renderer
Methods in org.jfree.chart.renderer with parameters of type CategoryDataset Modifier and Type Method Description voidBoxAndWhiskerRenderer. drawHorizontalItem(Graphics2D g2, CategoryItemRendererState state, Rectangle2D dataArea, CategoryPlot plot, CategoryAxis domainAxis, ValueAxis rangeAxis, CategoryDataset dataset, int row, int column)Draws the visual representation of a single data item when the plot has a horizontal orientation.voidAreaRenderer. drawItem(Graphics2D g2, CategoryItemRendererState state, Rectangle2D dataArea, CategoryPlot plot, CategoryAxis domainAxis, ValueAxis rangeAxis, CategoryDataset dataset, int row, int column)Draw a single data item.voidBarRenderer. drawItem(Graphics2D g2, CategoryItemRendererState state, Rectangle2D dataArea, CategoryPlot plot, CategoryAxis domainAxis, ValueAxis rangeAxis, CategoryDataset dataset, int row, int column)Draws the bar for a single (series, category) data item.voidBarRenderer3D. drawItem(Graphics2D g2, CategoryItemRendererState state, Rectangle2D dataArea, CategoryPlot plot, CategoryAxis domainAxis, ValueAxis rangeAxis, CategoryDataset dataset, int row, int column)Draws a 3D bar to represent one data item.voidBoxAndWhiskerRenderer. drawItem(Graphics2D g2, CategoryItemRendererState state, Rectangle2D dataArea, CategoryPlot plot, CategoryAxis domainAxis, ValueAxis rangeAxis, CategoryDataset dataset, int row, int column)Draw a single data item.voidCategoryItemRenderer. drawItem(Graphics2D g2, CategoryItemRendererState state, Rectangle2D dataArea, CategoryPlot plot, CategoryAxis domainAxis, ValueAxis rangeAxis, CategoryDataset data, int row, int column)Draws a single data item.voidCategoryStepRenderer. drawItem(Graphics2D g2, CategoryItemRendererState state, Rectangle2D dataArea, CategoryPlot plot, CategoryAxis domainAxis, ValueAxis rangeAxis, CategoryDataset dataset, int row, int column)Draw a single data item.voidGanttRenderer. drawItem(Graphics2D g2, CategoryItemRendererState state, Rectangle2D dataArea, CategoryPlot plot, CategoryAxis domainAxis, ValueAxis rangeAxis, CategoryDataset dataset, int row, int column)Draws the bar for a single (series, category) data item.voidGroupedStackedBarRenderer. drawItem(Graphics2D g2, CategoryItemRendererState state, Rectangle2D dataArea, CategoryPlot plot, CategoryAxis domainAxis, ValueAxis rangeAxis, CategoryDataset dataset, int row, int column)Draws a stacked bar for a specific item.voidIntervalBarRenderer. drawItem(Graphics2D g2, CategoryItemRendererState state, Rectangle2D dataArea, CategoryPlot plot, CategoryAxis domainAxis, ValueAxis rangeAxis, CategoryDataset dataset, int row, int column)Draws the bar for a single (series, category) data item.voidLayeredBarRenderer. drawItem(Graphics2D g2, CategoryItemRendererState state, Rectangle2D dataArea, CategoryPlot plot, CategoryAxis domainAxis, ValueAxis rangeAxis, CategoryDataset data, int row, int column)Draws the bar for one item in the dataset.voidLevelRenderer. drawItem(Graphics2D g2, CategoryItemRendererState state, Rectangle2D dataArea, CategoryPlot plot, CategoryAxis domainAxis, ValueAxis rangeAxis, CategoryDataset dataset, int row, int column)Draws the bar for a single (series, category) data item.voidLineAndShapeRenderer. drawItem(Graphics2D g2, CategoryItemRendererState state, Rectangle2D dataArea, CategoryPlot plot, CategoryAxis domainAxis, ValueAxis rangeAxis, CategoryDataset dataset, int row, int column)Draw a single data item.voidMinMaxCategoryRenderer. drawItem(Graphics2D g2, CategoryItemRendererState state, Rectangle2D dataArea, CategoryPlot plot, CategoryAxis domainAxis, ValueAxis rangeAxis, CategoryDataset dataset, int row, int column)Draw a single data item.voidStackedAreaRenderer. drawItem(Graphics2D g2, CategoryItemRendererState state, Rectangle2D dataArea, CategoryPlot plot, CategoryAxis domainAxis, ValueAxis rangeAxis, CategoryDataset dataset, int row, int column)Draw a single data item.voidStackedBarRenderer. drawItem(Graphics2D g2, CategoryItemRendererState state, Rectangle2D dataArea, CategoryPlot plot, CategoryAxis domainAxis, ValueAxis rangeAxis, CategoryDataset dataset, int row, int column)Draws a stacked bar for a specific item.voidStackedBarRenderer3D. drawItem(Graphics2D g2, CategoryItemRendererState state, Rectangle2D dataArea, CategoryPlot plot, CategoryAxis domainAxis, ValueAxis rangeAxis, CategoryDataset dataset, int row, int column)Draws a stacked bar (with 3D-effect) for a specific item.voidStatisticalBarRenderer. drawItem(Graphics2D g2, CategoryItemRendererState state, Rectangle2D dataArea, CategoryPlot plot, CategoryAxis domainAxis, ValueAxis rangeAxis, CategoryDataset data, int row, int column)Draws the bar with its standard deviation line range for a single (series, category) data item.voidWaterfallBarRenderer. drawItem(Graphics2D g2, CategoryItemRendererState state, Rectangle2D dataArea, CategoryPlot plot, CategoryAxis domainAxis, ValueAxis rangeAxis, CategoryDataset dataset, int row, int column)Draws the bar for a single (series, category) data item.voidBoxAndWhiskerRenderer. drawVerticalItem(Graphics2D g2, CategoryItemRendererState state, Rectangle2D dataArea, CategoryPlot plot, CategoryAxis domainAxis, ValueAxis rangeAxis, CategoryDataset dataset, int row, int column)Draws the visual representation of a single data item when the plot has a vertical orientation.RangeAbstractCategoryItemRenderer. getRangeExtent(CategoryDataset dataset)Returns the range of values the renderer requires to display all the items from the specified dataset.RangeCategoryItemRenderer. getRangeExtent(CategoryDataset dataset)Returns the range of values the renderer requires to display all the items from the specified dataset.RangeGroupedStackedBarRenderer. getRangeExtent(CategoryDataset dataset)Returns the range of values the renderer requires to display all the items from the specified dataset.RangeStackedAreaRenderer. getRangeExtent(CategoryDataset dataset)Returns the range of values the renderer requires to display all the items from the specified dataset.RangeStackedBarRenderer. getRangeExtent(CategoryDataset dataset)Returns the range of values the renderer requires to display all the items from the specified dataset.RangeStackedBarRenderer3D. getRangeExtent(CategoryDataset dataset)Returns the range of values the renderer requires to display all the items from the specified dataset.RangeWaterfallBarRenderer. getRangeExtent(CategoryDataset dataset)Returns the range of values the renderer requires to display all the items from the specified dataset. -
Uses of CategoryDataset in org.jfree.chart.urls
Methods in org.jfree.chart.urls with parameters of type CategoryDataset Modifier and Type Method Description StringCategoryURLGenerator. generateURL(CategoryDataset data, int series, int category)Returns a URL for one item in a dataset.StringStandardCategoryURLGenerator. generateURL(CategoryDataset dataset, int series, int category)Generates a URL for a particular item within a series. -
Uses of CategoryDataset in org.jfree.data
Subinterfaces of CategoryDataset in org.jfree.data Modifier and Type Interface Description interfaceIntervalCategoryDatasetA category dataset that defines a value range for each series/category combination.interfaceKeyedValues2DDatasetA dataset containing (key, value) data items.Classes in org.jfree.data that implement CategoryDataset Modifier and Type Class Description classDefaultCategoryDatasetA default implementation of theCategoryDatasetinterface.classDefaultIntervalCategoryDatasetA convenience class that provides a default implementation of theIntervalCategoryDatasetinterface.classDefaultKeyedValues2DDatasetA default implementation of theKeyedValues2DDatasetinterface.classJDBCCategoryDatasetACategoryDatasetimplementation over a database JDBC result set.Methods in org.jfree.data that return CategoryDataset Modifier and Type Method Description static CategoryDatasetDatasetUtilities. createCategoryDataset(String[] rowKeys, String[] columnKeys, double[][] data)Creates aCategoryDatasetthat contains a copy of the data in an array (instances ofDoubleare created to represent the data items).static CategoryDatasetDatasetUtilities. createCategoryDataset(String rowKeyPrefix, String columnKeyPrefix, double[][] data)Creates aCategoryDatasetthat contains a copy of the data in an array (instances ofDoubleare created to represent the data items).static CategoryDatasetDatasetUtilities. createCategoryDataset(String rowKeyPrefix, String columnKeyPrefix, Number[][] data)Creates aCategoryDatasetthat contains a copy of the data in an array.static CategoryDatasetDatasetUtilities. createCategoryDataset(String rowKey, KeyedValues rowData)Creates aCategoryDatasetby copying the data from the suppliedKeyedValuesinstance.Methods in org.jfree.data with parameters of type CategoryDataset Modifier and Type Method Description static PieDatasetDatasetUtilities. createPieDatasetForColumn(CategoryDataset data, int column)Creates a pie dataset from a table dataset by taking all the values for a single column.static PieDatasetDatasetUtilities. createPieDatasetForColumn(CategoryDataset data, Comparable columnKey)Creates a pie dataset from a table dataset by taking all the values for a single column.static PieDatasetDatasetUtilities. createPieDatasetForRow(CategoryDataset data, int row)Creates a pie dataset from a table dataset by taking all the values for a single row.static PieDatasetDatasetUtilities. createPieDatasetForRow(CategoryDataset data, Comparable rowKey)Creates a pie dataset from a table dataset by taking all the values for a single row.static RangeDatasetUtilities. getCumulativeRangeExtent(CategoryDataset dataset)Calculates the range of values for a dataset where each item is the running total of the items for the current series.static NumberDatasetUtilities. getMaximumStackedRangeValue(CategoryDataset data)Returns the maximum value in the dataset range, assuming that values in each category are "stacked".static NumberDatasetUtilities. getMinimumStackedRangeValue(CategoryDataset data)Returns the minimum value in the dataset range, assuming that values in each category are "stacked".static RangeDatasetUtilities. getStackedRangeExtent(CategoryDataset data)Returns the minimum and maximum values for the dataset's range (as in domain/range), assuming that the series in one category are stacked.static RangeDatasetUtilities. getStackedRangeExtent(CategoryDataset dataset, KeyToGroupMap map)Returns the minimum and maximum values for the dataset's range (as in domain/range), assuming that the series in one category are stacked.static booleanDatasetUtilities. isEmptyOrNull(CategoryDataset data)Returnstrueif the dataset is empty (ornull), andfalseotherwise.static RangeDatasetUtilities. iterateCategoryRangeExtent(CategoryDataset data)Iterates over the data item of the category dataset to find the range extent.Constructors in org.jfree.data with parameters of type CategoryDataset Constructor Description CategoryToPieDataset(CategoryDataset source, int extract, int index)Deprecated.Use the other constructor.CategoryToPieDataset(CategoryDataset source, org.jfree.util.TableOrder extract, int index)An adaptor class that converts anyCategoryDatasetinto aPieDataset, by taking the values from a single row or column. -
Uses of CategoryDataset in org.jfree.data.gantt
Subinterfaces of CategoryDataset in org.jfree.data.gantt Modifier and Type Interface Description interfaceGanttCategoryDatasetAn extension of theIntervalCategoryDatasetinterface that adds support for multiple sub-intervals.Classes in org.jfree.data.gantt that implement CategoryDataset Modifier and Type Class Description classTaskSeriesCollectionA collection ofTaskSeriesobjects. -
Uses of CategoryDataset in org.jfree.data.statistics
Subinterfaces of CategoryDataset in org.jfree.data.statistics Modifier and Type Interface Description interfaceBoxAndWhiskerCategoryDatasetA category dataset that defines various medians, outliers and an average value for each item.interfaceStatisticalCategoryDatasetA category dataset that defines a median and standard deviation value for each item.Classes in org.jfree.data.statistics that implement CategoryDataset Modifier and Type Class Description classDefaultBoxAndWhiskerCategoryDatasetA convenience class that provides a default implementation of theBoxAndWhiskerCategoryDatasetinterface.classDefaultStatisticalCategoryDatasetA convenience class that provides a default implementation of theStatisticalCategoryDatasetinterface. -
Uses of CategoryDataset in org.jfree.data.xml
Methods in org.jfree.data.xml that return CategoryDataset Modifier and Type Method Description CategoryDatasetCategoryDatasetHandler. getDataset()Returns the dataset.static CategoryDatasetDatasetReader. readCategoryDatasetFromXML(File file)Reads aCategoryDatasetfrom a file.static CategoryDatasetDatasetReader. readCategoryDatasetFromXML(InputStream in)Reads aCategoryDatasetfrom a stream.