Chart Builder API (beta)

oracle.ord.media.chart.types
Class AreaDesc

java.lang.Object
  |
  +--oracle.ord.media.chart.types.AreaDesc

public class AreaDesc
extends java.lang.Object

AreaDesc objects are used to customize the graphic drawn for areas in area charts, and are normally supplied as arguments to setYSeriesGraphic(). Users have control of the line width, line color and area color.


Constructor Summary
AreaDesc()
           
 
Method Summary
 java.awt.Color getAreaColor()
          Get the color of the area.
 java.awt.Color getLineColor()
          Get the color of the line.
 int getLineWidth()
          Get the width of the area.
 void setAreaColor(java.awt.Color areaColor)
          Set the area color.
 void setLineColor(java.awt.Color lineColor)
          Set the line color.
 void setLineWidth(int lineWidth)
          Set the line width (in pixels).
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AreaDesc

public AreaDesc()
Method Detail

setLineColor

public void setLineColor(java.awt.Color lineColor)
Set the line color.

setAreaColor

public void setAreaColor(java.awt.Color areaColor)
Set the area color.

setLineWidth

public void setLineWidth(int lineWidth)
Set the line width (in pixels).

getAreaColor

public java.awt.Color getAreaColor()
Get the color of the area.

getLineColor

public java.awt.Color getLineColor()
Get the color of the line.

getLineWidth

public int getLineWidth()
Get the width of the area.

Chart Builder API (beta)