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 net.sf.mzmine.modules.visualization.spectra.renderers.ContinuousRenderer.java

public class ContinuousRenderer extends XYLineAndShapeRenderer {

    public static final float TRANSPARENCY = 0.8f;

    public static final AlphaComposite alphaComp = AlphaComposite.getInstance(AlphaComposite.SRC_OVER,
            TRANSPARENCY);

From source file org.schreibubi.JCombinations.jfreechart.XYLineAndShapeRendererExtended.java

/**
 * Adds support for ArbitraryMarker (@see org.schreibubi.JCombinations.jfreechart.ArbitraryMarker) in the
 * XYLineAndShapeRenderer
 * 
 * @author Jrg Werner
 * 

From source file edu.scripps.fl.curves.plot.MyXYErrorRenderer.java

/**
 * 
 * @author Mark Southern (southern at scripps dot edu)
 * 
 */
public class MyXYErrorRenderer extends XYLineAndShapeRenderer {

From source file net.sourceforge.processdash.ev.ui.chart.TooltipLineXYLineAndShapeRenderer.java

/**
 * A renderer used to add a tooltip on a line connecting 2 items. The tooltip will be the
 *  one used for the first item.
 */
public class TooltipLineXYLineAndShapeRenderer extends XYLineAndShapeRenderer {

From source file org.operamasks.faces.render.graph.XYCurveAndShapeRenderer.java

public class XYCurveAndShapeRenderer extends XYLineAndShapeRenderer {
    /** A flag indicating whether or not Area are drawn at each XY point. */
    private boolean drawArea;

    /**
     * Create a renderer with both curve lines and shapes visible by default.

From source file com.bdb.weather.display.windplot.WindItemRenderer.java

/**
 *
 * @author Bruce
 */
public class WindItemRenderer extends XYLineAndShapeRenderer {
    private Paint windDirectionPaint = Color.BLACK;

From source file net.sf.mzmine.modules.visualization.scatterplot.scatterplotchart.ScatterPlotRenderer.java

public class ScatterPlotRenderer extends XYLineAndShapeRenderer {

    private static final Shape dataPointsShape = new Ellipse2D.Float(-2.5f, -2.5f, 5, 5);

    public static final Color pointColor = Color.blue;
    public static final Color searchColor = Color.orange;

From source file org.mwc.debrief.sensorfusion.views.FusionPlotRenderer.java

public class FusionPlotRenderer extends XYLineAndShapeRenderer {

    public static interface FusionHelper {
        /**
         * find the selected items
         * 

From source file org.mwc.cmap.grideditor.chart.RendererWithDynamicFeedback.java

/**
 * Extends {@link LineAndShapeRenderer} with ability to render additional
 * move-feedback for some data item.
 */
public class RendererWithDynamicFeedback extends XYLineAndShapeRenderer {

From source file edu.jhuapl.graphs.jfreechart.TimeSeriesRenderer.java

/**
 * A specialized {@link XYLineAndShapeRenderer renderer} for JFreeChart time series graphs that selects the item color
 * and shape based on {@link TimeSeriesInterface time series} and {@link TimePointInterface time point} metadata.
 */
public class TimeSeriesRenderer extends XYLineAndShapeRenderer {