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 SortOrderCategoryPlot. columnRenderingOrderControls the order in which the columns are traversed when rendering the data items.private SortOrderCategoryPlot. rowRenderingOrderControls 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 SortOrderCategoryPlot. getColumnRenderingOrder()Returns the order in which the columns are rendered.SortOrderCategoryPlot. 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 voidCategoryPlot. setColumnRenderingOrder(SortOrder order)Sets the column order in which the items in each dataset should be rendered and sends aPlotChangeEventto all registered listeners.voidCategoryPlot. setRowRenderingOrder(SortOrder order)Sets the row order in which the items in each dataset should be rendered and sends aPlotChangeEventto 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 SortOrderLegendTitle. sortOrderWhether to render legend items in ascending or descending order.Methods in org.jfree.chart.title that return SortOrder Modifier and Type Method Description SortOrderLegendTitle. 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 voidLegendTitle. 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 SortOrderSortOrder. 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 SortOrderKeyedValueComparator. orderThe sort order.Methods in org.jfree.data that return SortOrder Modifier and Type Method Description SortOrderKeyedValueComparator. getOrder()Returns the sort order.Methods in org.jfree.data with parameters of type SortOrder Modifier and Type Method Description voidDefaultKeyedValues. sortByKeys(SortOrder order)Sorts the items in the list by key.voidDefaultKeyedValues. 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 voidDefaultPieDataset. sortByKeys(SortOrder order)Sorts the dataset's items by key and sends aDatasetChangeEventto all registered listeners.voidDefaultPieDataset. sortByValues(SortOrder order)Sorts the dataset's items by value and sends aDatasetChangeEventto all registered listeners.
-