Example usage for org.jfree.chart.renderer PaintScale interface-usage

List of usage examples for org.jfree.chart.renderer PaintScale interface-usage

Introduction

In this page you can find the example usage for org.jfree.chart.renderer PaintScale interface-usage.

Usage

From source file ch.zhaw.ias.dito.ui.util.ColorPaintScale.java

/**
 * A Color scale supporting a color range from red to blue on the HSB color space. 
 * @author Thomas Niederberger (nith) - institute of applied simulation (IAS)
 */
public class ColorPaintScale implements PaintScale {
    private double lowerBound;

From source file org.gumtree.vis.hist2d.ColorPaintScale.java

/**
 * @author nxi
 *
 */
public class ColorPaintScale implements PaintScale, Serializable, Cloneable {

From source file org.jax.haplotype.analysis.visualization.SmoothPaintScale.java

/**
 * A paint scale that can be used for smooth color transitions
 * @author <A HREF="mailto:keith.sheppard@jax.org">Keith Sheppard</A>
 */
public class SmoothPaintScale implements PaintScale, Serializable {
    /**

From source file edu.purdue.cc.bionet.util.Spectrum.java

public class Spectrum implements PaintScale, Cloneable {
    protected Range range;
    protected Paint outOfRangePaint = null;

    public Spectrum() {
        this(0.0, 1.0);

From source file org.spf4j.perf.impl.chart.InverseGrayScale.java

/**
 * A paint scale that returns shades of gray.
 *
 * @since 1.0.4
 */
public final class InverseGrayScale implements PaintScale, PublicCloneable, Serializable {

From source file net.sf.mzmine.util.interpolatinglookuppaintscale.InterpolatingLookupPaintScale.java

public class InterpolatingLookupPaintScale implements PaintScale, PublicCloneable, Serializable {

    private class CompatibleEntry implements Map.Entry<Double, Color> {

        private Double key;
        private Color value;

From source file org.csml.tommo.sugar.heatmap.ColorPaintScale.java

public abstract class ColorPaintScale implements PaintScale {

    protected double minValue;
    protected double maxValue;

    public ColorPaintScale(double minValue, double maxValue) {

From source file ColorPaintScale.java

/**
 * A paint scale that returns colors:
 *  - green to black to red
 *  - black to color
 *  - white to color
 *  - color1 to color2

From source file net.sf.maltcms.chromaui.charts.GradientPaintScale.java

/**
 * @author Nils Hoffmann
 *
 *
 */
public class GradientPaintScale implements PaintScale, IConfigurable, Serializable {