Uses of Enum Class
org.jfree.chart.util.TableOrder
Package
Description
-
Uses of TableOrder in org.jfree.chart
Modifier and TypeMethodDescriptionstatic JFreeChart
ChartFactory.createMultiplePieChart
(String title, CategoryDataset dataset, TableOrder order, boolean legend, boolean tooltips, boolean urls) Creates a chart that displays multiple pie plots.static JFreeChart
ChartFactory.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
Modifier 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).Modifier and TypeMethodDescriptionvoid
MultiplePiePlot.setDataExtractOrder
(TableOrder order) Sets the data extract order (by row or by column) and sends aPlotChangeEvent
to all registered listeners.void
SpiderWebPlot.setDataExtractOrder
(TableOrder order) Sets the data extract order (by row or by column) and sends aPlotChangeEvent
to all registered listeners.ModifierConstructorDescriptionSpiderWebPlot
(CategoryDataset dataset, TableOrder extract) Creates a new spider web plot with the given dataset. -
Uses of TableOrder in org.jfree.chart.util
Modifier and TypeMethodDescriptionstatic TableOrder
Returns the enum constant of this class with the specified name.static TableOrder[]
TableOrder.values()
Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of TableOrder in org.jfree.data.category
Modifier and TypeMethodDescriptionCategoryToPieDataset.getExtractType()
Returns the extract type, which determines whether data is read from one row or one column of the underlying dataset.ModifierConstructorDescriptionCategoryToPieDataset
(CategoryDataset source, TableOrder extract, int index) An adaptor class that converts anyCategoryDataset
into aPieDataset
, by taking the values from a single row or column.