Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.jfree.chart.renderer.category.* (44)org.jfree.chart.renderer.category.junit.* (21)
org.jfree.chart.renderer.junit.* (5)org.jfree.chart.renderer.xy.* (51)
org.jfree.chart.renderer.xy.junit.* (23)

org.jfree.chart.renderer: Javadoc index of package org.jfree.chart.renderer.


Package Samples:

org.jfree.chart.renderer.category: Plug-in renderers for the org.jfree.chart.plot.CategoryPlot     and org.jfree.chart.plot.XYPlot     classes.  
org.jfree.chart.renderer.xy: Core support for the plug-in renderers used by the org.jfree.chart.plot.CategoryPlot and org.jfree.chart.plot.XYPlot classes.  
org.jfree.chart.renderer.category.junit: Plug-in renderers for the org.jfree.chart.plot.CategoryPlot class.  
org.jfree.chart.renderer.xy.junit: Plug-in renderers for the org.jfree.chart.plot.XYPlot class.  
org.jfree.chart.renderer.junit

Classes:

CategoryItemRenderer: A plug-in object that is used by the org.jfree.chart.plot.CategoryPlot class to display individual data items from a org.jfree.data.category.CategoryDataset . This interface defines the methods that must be provided by all renderers. If you are implementing a custom renderer, you should consider extending the AbstractCategoryItemRenderer class. Most renderer attributes are defined using a "three layer" approach. When looking up an attribute (for example, the outline paint) the renderer first checks to see if there is a setting (in layer 0) that applies to ALL items that the renderer draws. If there ...
OutlierList: A collection of outliers for a single entity in a box and whisker plot. Outliers are grouped in lists for each entity. Lists contain one or more outliers, determined by whether overlaps have occured. Overlapping outliers are grouped in the same list. Each list contains an averaged outlier, which is the same as a single outlier if there is only one outlier in the list, but the average of all the outliers in the list if there is more than one. NB This is simply my scheme for displaying outliers, and might not be acceptable by the wider community.
WaterfallBarRenderer: A renderer that handles the drawing of waterfall bar charts, for use with the org.jfree.chart.plot.CategoryPlot class. Note that the bar colors are defined using special methods in this class - the inherited methods (for example, AbstractRenderer.setSeriesPaint(int, Paint) > AbstractRenderer.setSeriesPaint(int, Paint) 55 ) are ignored.
ClusteredXYBarRenderer: An extension of XYBarRenderer that displays bars for different series values at the same x next to each other. The assumption here is that for each x (time or else) there is a y value for each series. If this is not the case, there will be spaces between bars for a given x. This renderer does not include code to calculate the crosshair point for the plot.
StackedXYBarRenderer: A bar renderer that displays the series items stacked. The dataset used together with this renderer must be a org.jfree.data.xy.IntervalXYDataset and a org.jfree.data.xy.TableXYDataset . For example, the dataset class org.jfree.data.xy.CategoryTableXYDataset implements both interfaces.
AbstractCategoryItemRenderer: An abstract base class that you can use to implement a new CategoryItemRenderer . When you create a new CategoryItemRenderer you are not required to extend this class, but it makes the job easier.
CyclicXYItemRenderer: The Cyclic XY item renderer is specially designed to handle cyclic axis. While the standard renderer would draw a line across the plot when a cycling occurs, the cyclic renderer splits the line at each cycle end instead. This is done by interpolating new points at cycle boundary. Thus, correct appearance is restored. The Cyclic XY item renderer works exactly like a standard XY item renderer with non-cyclic axis.
NotOutlierException: An exception that is generated by the Outlier , OutlierList and OutlierListCollection classes.
AbstractRenderer: Base class providing common services for renderers. Most methods that update attributes of the renderer will fire a org.jfree.chart.event.RendererChangeEvent , which normally means the plot that owns the renderer will receive notification that the renderer has been changed (the plot will, in turn, notify the chart).
XYBoxAndWhiskerRenderer: A renderer that draws box-and-whisker items on an org.jfree.chart.plot.XYPlot . This renderer requires a org.jfree.data.statistics.BoxAndWhiskerXYDataset ). This renderer does not include any code to calculate the crosshair point.
XYItemRenderer: Interface for rendering the visual representation of a single (x, y) item on an org.jfree.chart.plot.XYPlot . To support cloning charts, it is recommended that renderers implement both the java.lang.Cloneable and PublicCloneable interfaces.
MinMaxCategoryRenderer: Renderer for drawing min max plot. This renderer draws all the series under the same category in the same x position using objectIcon and a line from the maximum value to the minimum value. For use with the org.jfree.chart.plot.CategoryPlot class.
HighLowRenderer: A renderer that draws high/low/open/close markers on an org.jfree.chart.plot.XYPlot (requires a org.jfree.data.xy.OHLCDataset ). This renderer does not include code to calculate the crosshair point for the plot.
XYDifferenceRenderer: A renderer for an org.jfree.chart.plot.XYPlot that highlights the differences between two series. The renderer expects a dataset that: has exactly two series; each series has the same x-values; no null values;
CandlestickRenderer: A renderer that draws candlesticks on an org.jfree.chart.plot.XYPlot (requires a org.jfree.data.xy.OHLCDataset ). This renderer does not include code to calculate the crosshair point for the plot.
XYBarRenderer: A renderer that draws bars on an org.jfree.chart.plot.XYPlot (requires an org.jfree.data.xy.IntervalXYDataset ). This renderer does not include any code for calculating the crosshair point.
OutlierListCollection: A collection of outlier lists for a box and whisker plot. Each collection is associated with a single box and whisker entity. Outliers are grouped in lists for each entity. Lists contain one or more outliers, determined by whether overlaps have occurred. Overlapping outliers are grouped in the same list.
DefaultXYItemRenderer: A default renderer for the org.jfree.chart.plot.XYPlot class. This is an alias for the XYLineAndShapeRenderer class.
CategoryStepRenderer: A "step" renderer similar to org.jfree.chart.renderer.xy.XYStepRenderer but that can be used with the org.jfree.chart.plot.CategoryPlot class.
XYAreaRenderer: Area item renderer for an org.jfree.chart.plot.XYPlot . This class can draw (a) shapes at each point, or (b) lines between points, or (c) both shapes and lines, or (d) filled areas, or (e) filled areas and shapes.
LevelRenderer: A CategoryItemRenderer that draws individual data items as horizontal lines, spaced in the same way as bars in a bar chart.
GroupedStackedBarRenderer: A renderer that draws stacked bars within groups. This will probably be merged with the StackedBarRenderer class at some point.
StatisticalLineAndShapeRenderer: A renderer that draws shapes for each data item, and lines between data items. Each point has a mean value and a standard deviation line. For use with the org.jfree.chart.plot.CategoryPlot class.
XYBubbleRenderer: A renderer that draws a circle at each data point with a diameter that is determined by the z-value in the dataset (the renderer requires the dataset to be an instance of org.jfree.data.xy.XYZDataset .
RangeType: An enumeration of the 'range types' for a renderer. This is used when calculating the axis range required to display all the data in a dataset...the result will depend on whether the renderer plots the values directly (STANDARD) or stacks them (STACKED).

Home | Contact Us | Privacy Policy | Terms of Service