org.jfree.chart.renderer.xy.XYBoxAndWhiskerRenderer A renderer that draws box-and-whisker items on an {@link XYPlot}. This renderer requires a {@link BoxAndWhiskerXYDataset}). <P> This renderer does not include any code to calculate the crosshair point. @author David Browning
org.jfree.chart.axis.ValueAxis The base class for axes that display value data, where values are measured using the <code>double</code> primitive. The two key subclasses are {@link DateAxis} and {@link NumberAxis}.
org.jfree.chart.renderer.xy.XYDifferenceRenderer A renderer for an {@link XYPlot} that highlights the differences between two series. The renderer expects a dataset that: <ul> <li>has exactly two series;</li> <li>each series has the same x-values;</li> <li>no <code>null</code> values; </ul>
org.jfree.chart.renderer.xy.HighLowRenderer A renderer that draws high/low/open/close markers on an {@link XYPlot} (requires a {@link OHLCDataset}). This renderer does not include code to calculate the crosshair point for the plot.
org.jfree.chart.renderer.xy.HighLow Represents one point in the high/low/open/close plot. <P> All the coordinates in this class are in Java2D space. @author Andrzej Porebski
org.jfree.chart.renderer.category.MinMaxCategoryRenderer Renderer for drawing min max plot. This renderer draws all the series under the same category in the same x position using <code>objectIcon</code> and a line from the maximum value to the minimum value. <p> For use with the {@link org.jfree.chart.plot.CategoryPlot} class. @autho ...
org.jfree.chart.renderer.xy.CandlestickRenderer A renderer that draws candlesticks on an {@link XYPlot} (requires a {@link OHLCDataset}). <P> This renderer does not include code to calculate the crosshair point for the plot. @author Sylvain Vieujot
org.jfree.chart.plot.SpiderWebPlot A plot that displays data from a {@link CategoryDataset} in the form of a "spider web". Multiple series can be plotted on the same axis to allow easy comparison.