Uses of Class
org.jfree.chart.plot.SeriesRenderingOrder
-
Packages that use SeriesRenderingOrder Package Description org.jfree.chart.plot Plot classes and related interfaces. -
-
Uses of SeriesRenderingOrder in org.jfree.chart.plot
Fields in org.jfree.chart.plot declared as SeriesRenderingOrder Modifier and Type Field Description static SeriesRenderingOrder
SeriesRenderingOrder. FORWARD
Render series in the order 0, 1, 2, ..., N-1, where N is the number of series.static SeriesRenderingOrder
SeriesRenderingOrder. REVERSE
Render series in the order N-1, N-2, ..., 2, 1, 0, where N is the number of series.private SeriesRenderingOrder
XYPlot. seriesRenderingOrder
The order of the series rendering (REVERSE draws the primary series last so that it appears to be on top).Methods in org.jfree.chart.plot that return SeriesRenderingOrder Modifier and Type Method Description SeriesRenderingOrder
XYPlot. getSeriesRenderingOrder()
Returns the series rendering order.Methods in org.jfree.chart.plot with parameters of type SeriesRenderingOrder Modifier and Type Method Description void
XYPlot. setSeriesRenderingOrder(SeriesRenderingOrder order)
Sets the series order and sends aPlotChangeEvent
to all registered listeners.
-