public interface

PaintScale

org.jfree.chart.renderer.PaintScale
Known Indirect Subclasses

Class Overview

A source for Paint instances, used by the XYBlockRenderer.

NOTE: Classes that implement this interface should also implement PublicCloneable and Serializable, so that any renderer (or other object instance) that references an instance of this interface can still be cloned or serialized.

Summary

Public Methods
abstract double getLowerBound()
Returns the lower bound for the scale.
abstract Paint getPaint(double value)
Returns a Paint instance for the specified value.
abstract double getUpperBound()
Returns the upper bound for the scale.

Public Methods

public abstract double getLowerBound ()

Returns the lower bound for the scale.

Returns
  • The lower bound.
See Also

public abstract Paint getPaint (double value)

Returns a Paint instance for the specified value.

Parameters
value the value.
Returns
  • A Paint instance (never null).

public abstract double getUpperBound ()

Returns the upper bound for the scale.

Returns
  • The upper bound.
See Also