Uses of Class
org.jfree.chart.util.TableOrder
| Package | Description |
|---|---|
| org.jfree.chart |
Core classes, including
JFreeChart and
ChartPanel. |
| org.jfree.chart.plot |
Plot classes and related interfaces.
|
| org.jfree.chart.util |
Utility classes used by JFreeChart.
|
| org.jfree.data.category |
A package containing the
CategoryDataset interface and related classes. |
-
Uses of TableOrder in org.jfree.chart
Methods in org.jfree.chart with parameters of type TableOrder Modifier and Type Method Description static JFreeChartChartFactory. createMultiplePieChart(String title, CategoryDataset dataset, TableOrder order, boolean legend, boolean tooltips, boolean urls)Creates a chart that displays multiple pie plots.static JFreeChartChartFactory. createMultiplePieChart3D(String title, CategoryDataset dataset, TableOrder order, boolean legend, boolean tooltips, boolean urls)Creates a chart that displays multiple pie plots. -
Uses of TableOrder in org.jfree.chart.plot
Methods in org.jfree.chart.plot that return TableOrder Modifier and Type Method Description TableOrderMultiplePiePlot. getDataExtractOrder()Returns the data extract order (by row or by column).TableOrderSpiderWebPlot. getDataExtractOrder()Returns the data extract order (by row or by column).Methods in org.jfree.chart.plot with parameters of type TableOrder Modifier and Type Method Description voidMultiplePiePlot. setDataExtractOrder(TableOrder order)Sets the data extract order (by row or by column) and sends aPlotChangeEventto all registered listeners.voidSpiderWebPlot. setDataExtractOrder(TableOrder order)Sets the data extract order (by row or by column) and sends aPlotChangeEventto all registered listeners.Constructors in org.jfree.chart.plot with parameters of type TableOrder Constructor Description SpiderWebPlot(CategoryDataset dataset, TableOrder extract)Creates a new spider web plot with the given dataset. -
Uses of TableOrder in org.jfree.chart.util
Methods in org.jfree.chart.util that return TableOrder Modifier and Type Method Description static TableOrderTableOrder. valueOf(String name)Returns the enum constant of this type with the specified name.static TableOrder[]TableOrder. values()Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of TableOrder in org.jfree.data.category
Methods in org.jfree.data.category that return TableOrder Modifier and Type Method Description TableOrderCategoryToPieDataset. getExtractType()Returns the extract type, which determines whether data is read from one row or one column of the underlying dataset.Constructors in org.jfree.data.category with parameters of type TableOrder Constructor Description CategoryToPieDataset(CategoryDataset source, TableOrder extract, int index)An adaptor class that converts anyCategoryDatasetinto aPieDataset, by taking the values from a single row or column.