Uses of Enum
org.jfree.chart.util.TableOrder
Packages that use TableOrder
Package
Description
Core classes, including 
JFreeChart and
ChartPanel.Plot classes and related interfaces.
Utility classes used by JFreeChart.
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 TableOrderModifier and TypeMethodDescriptionstatic 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 TableOrderModifier and TypeMethodDescriptionMultiplePiePlot.getDataExtractOrder()Returns the data extract order (by row or by column).SpiderWebPlot.getDataExtractOrder()Returns the data extract order (by row or by column).Methods in org.jfree.chart.plot with parameters of type TableOrderModifier and TypeMethodDescriptionvoidMultiplePiePlot.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 TableOrderModifierConstructorDescriptionSpiderWebPlot(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 TableOrderModifier and TypeMethodDescriptionstatic TableOrderReturns 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 TableOrderModifier and TypeMethodDescriptionCategoryToPieDataset.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 TableOrderModifierConstructorDescriptionCategoryToPieDataset(CategoryDataset source, TableOrder extract, int index) An adaptor class that converts anyCategoryDatasetinto aPieDataset, by taking the values from a single row or column.