Uses of Interface
org.jfree.chart.renderer.PaintScale

Packages that use PaintScale
org.jfree.chart.renderer Core support for the plug-in renderers used by the CategoryPlot and XYPlot classes. 
org.jfree.chart.renderer.xy Plug-in renderers for the XYPlot class. 
org.jfree.chart.title Classes used to display chart titles and subtitles. 
 

Uses of PaintScale in org.jfree.chart.renderer
 

Classes in org.jfree.chart.renderer that implement PaintScale
 class GrayPaintScale
          A paint scale that returns shades of gray.
 class LookupPaintScale
          A paint scale that uses a lookup table to associate paint instances with data value ranges.
 

Uses of PaintScale in org.jfree.chart.renderer.xy
 

Methods in org.jfree.chart.renderer.xy that return PaintScale
 PaintScale XYBlockRenderer.getPaintScale()
          Returns the paint scale used by the renderer.
 

Methods in org.jfree.chart.renderer.xy with parameters of type PaintScale
 void XYBlockRenderer.setPaintScale(PaintScale scale)
          Sets the paint scale used by the renderer and sends a RendererChangeEvent to all registered listeners.
 

Uses of PaintScale in org.jfree.chart.title
 

Methods in org.jfree.chart.title that return PaintScale
 PaintScale PaintScaleLegend.getScale()
          Returns the scale used to convert values to colors.
 

Methods in org.jfree.chart.title with parameters of type PaintScale
 void PaintScaleLegend.setScale(PaintScale scale)
          Sets the scale and sends a TitleChangeEvent to all registered listeners.
 

Constructors in org.jfree.chart.title with parameters of type PaintScale
PaintScaleLegend(PaintScale scale, ValueAxis axis)
          Creates a new instance.