Uses of Class
org.jfree.chart.util.SortOrder
Package | Description |
---|---|
org.jfree.chart.plot |
Plot classes and related interfaces.
|
org.jfree.chart.title |
Classes used to display chart titles and subtitles.
|
org.jfree.chart.util |
Utility classes used by JFreeChart.
|
org.jfree.data |
The base package for classes that represent various types of data.
|
org.jfree.data.general |
Data interfaces and classes.
|
-
Uses of SortOrder in org.jfree.chart.plot
Methods in org.jfree.chart.plot that return SortOrder Modifier and Type Method Description SortOrder
CategoryPlot. getColumnRenderingOrder()
Returns the order in which the columns are rendered.SortOrder
CategoryPlot. getRowRenderingOrder()
Returns the order in which the rows should be rendered.Methods in org.jfree.chart.plot with parameters of type SortOrder Modifier and Type Method Description void
CategoryPlot. setColumnRenderingOrder(SortOrder order)
Sets the column order in which the items in each dataset should be rendered and sends aPlotChangeEvent
to all registered listeners.void
CategoryPlot. setRowRenderingOrder(SortOrder order)
Sets the row order in which the items in each dataset should be rendered and sends aPlotChangeEvent
to all registered listeners. -
Uses of SortOrder in org.jfree.chart.title
Methods in org.jfree.chart.title that return SortOrder Modifier and Type Method Description SortOrder
LegendTitle. getSortOrder()
Gets the order used to display legend items.Methods in org.jfree.chart.title with parameters of type SortOrder Modifier and Type Method Description void
LegendTitle. setSortOrder(SortOrder order)
Sets the order used to display legend items. -
Uses of SortOrder in org.jfree.chart.util
Methods in org.jfree.chart.util that return SortOrder Modifier and Type Method Description static SortOrder
SortOrder. valueOf(String name)
Returns the enum constant of this type with the specified name.static SortOrder[]
SortOrder. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of SortOrder in org.jfree.data
Methods in org.jfree.data that return SortOrder Modifier and Type Method Description SortOrder
KeyedValueComparator. getOrder()
Returns the sort order.Methods in org.jfree.data with parameters of type SortOrder Modifier and Type Method Description void
DefaultKeyedValues. sortByKeys(SortOrder order)
Sorts the items in the list by key.void
DefaultKeyedValues. sortByValues(SortOrder order)
Sorts the items in the list by value.Constructors in org.jfree.data with parameters of type SortOrder Constructor Description KeyedValueComparator(KeyedValueComparatorType type, SortOrder order)
Creates a new comparator. -
Uses of SortOrder in org.jfree.data.general
Methods in org.jfree.data.general with parameters of type SortOrder Modifier and Type Method Description void
DefaultPieDataset. sortByKeys(SortOrder order)
Sorts the dataset's items by key and sends aDatasetChangeEvent
to all registered listeners.void
DefaultPieDataset. sortByValues(SortOrder order)
Sorts the dataset's items by value and sends aDatasetChangeEvent
to all registered listeners.