Example usage for org.jfree.chart.renderer.xy XYLineAndShapeRenderer subclass-usage

List of usage examples for org.jfree.chart.renderer.xy XYLineAndShapeRenderer subclass-usage

Introduction

In this page you can find the example usage for org.jfree.chart.renderer.xy XYLineAndShapeRenderer subclass-usage.

Usage

From source file umontreal.ssj.charts.EmpiricalRenderer.java

/**
 * A renderer that draws horizontal lines between points and/or draws shapes
 * at each data point to provide an empirical style chart.  This renderer is
 * designed for use with the {XYPlot} class.
 */
public class EmpiricalRenderer extends XYLineAndShapeRenderer

From source file umontreal.iro.lecuyer.charts.EmpiricalRenderer.java

/**
 * A renderer that draws horizontal lines between points and/or draws shapes
 * at each data point to provide an empirical style chart.  This renderer is
 * designed for use with the {XYPlot} class.
 */
public class EmpiricalRenderer extends XYLineAndShapeRenderer

From source file no.met.jtimeseries.chart.XYSplineRenderer.java

/**
 * A renderer that connects data points with natural cubic splines and/or
 * draws shapes at each data point.  This renderer is designed for use with
 * the {@link XYPlot} class.
 *
 * @since 1.0.7

From source file no.met.jtimeseries.chart.XYCardinalSplineRenderer.java

/**
 * A renderer that connects data points with cardinal splines and/or draws
 * shapes at each data point. This renderer is designed for use with the
 * {@link XYPlot} class. The algorithm implemented here is original designed by
 * Dr. Murtaza Khan, which can be found at
 * http://www.mathworks.com/matlabcentral

From source file ChartUsingJava.XYSmoothLineAndShapeRenderer.java

/**
 * A line and shape renderer that performs line smoothing.  See
 * http://www.jfree.org/phpBB2/viewtopic.php?t=20671
 *
 * WARNING: THIS CLASS IS NOT PART OF THE STANDARD JFREECHART API AND IS
 * SUBJECT TO ALTERATION OR REMOVAL.  DO NOT RELY ON THIS CLASS FOR

From source file org.jfree.experimental.chart.renderer.xy.XYSmoothLineAndShapeRenderer.java

/**
 * A line and shape renderer that performs line smoothing.  See
 * http://www.jfree.org/phpBB2/viewtopic.php?t=20671
 *
 * WARNING: THIS CLASS IS NOT PART OF THE STANDARD JFREECHART API AND IS
 * SUBJECT TO ALTERATION OR REMOVAL.  DO NOT RELY ON THIS CLASS FOR

From source file no.met.jtimeseries.chart.XYHybridSplineRenderer.java

/**
 * A renderer that connects data points with natural cubic splines and/or draws
 * shapes at each data point. This renderer is designed for use with the
 * {@link XYPlot} class.
 *
 * @since 1.0.7

From source file userinterface.graph.PrismErrorRenderer.java

/**
 * Error renderer for our 2D charts, This class supports Error bars and Deviations as of yet.
 * @author Muhammad Omer Saeed
 *
 */
public class PrismErrorRenderer extends XYLineAndShapeRenderer {

From source file aprofplot.jfreechart.SamplingXYLineAndShapeRenderer.java

/**
 * A renderer for an XYPlot. Items are drawn as a combination of lines and/or shapes. Shapes that would not be visible are not rendered.
 * The drawing of lines is reduced to those lines that contribute to the visual appearance of the chart 
 * in way similar to that uses by the {@link SamplingXYLineRenderer}.
 * The rendering options shapes, strokes, paints, and flags (e. g. items filled, outlines visible) are determined 
 * ahead of the rendering of the individual items. Item-specific settings for these parameters are thus not respected.