Uses of Class
org.jfree.chart.util.SortOrder
-
Packages that use 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
Fields in org.jfree.chart.plot declared as SortOrder Modifier and Type Field Description private SortOrder
CategoryPlot. columnRenderingOrder
Controls the order in which the columns are traversed when rendering the data items.private SortOrder
CategoryPlot. rowRenderingOrder
Controls the order in which the rows are traversed when rendering the data items.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
Fields in org.jfree.chart.title declared as SortOrder Modifier and Type Field Description private SortOrder
LegendTitle. sortOrder
Whether to render legend items in ascending or descending order.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(java.lang.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
Fields in org.jfree.data declared as SortOrder Modifier and Type Field Description private SortOrder
KeyedValueComparator. order
The sort order.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.
-