com.jinsight.jetchart
Class PolarAreaSerie

java.lang.Object
  extended bycom.jinsight.jetchart.AbstractSerie
      extended bycom.jinsight.jetchart.PolarSerie
          extended bycom.jinsight.jetchart.PolarAreaSerie

public class PolarAreaSerie
extends PolarSerie

This class implements the properties and methods of a polar area series. Each pair of values of a polar area series corresponds to one point of a closed and color filled polygon painted on the surface of a polar graph.

See Also:
PolarSerie

Field Summary
 
Fields inherited from class com.jinsight.jetchart.AbstractSerie
CLIENT_SIDE, SERVER_SIDE_CERN, SERVER_SIDE_NCSA
 
Constructor Summary
PolarAreaSerie()
          Creates a PolarAreaSerie object.
PolarAreaSerie(double[][] multipleValues)
          Creates a PolarAreaSerie object.
PolarAreaSerie(double[][] multipleValues, java.lang.String title)
          Creates a PolarAreaSerie object.
 
Method Summary
 void setBorderColor(java.awt.Color borderColor)
          Sets the color of the area's border.
 
Methods inherited from class com.jinsight.jetchart.PolarSerie
getSerieMap, getTitle, setColor, setDataPointLegendColor, setDataPointLegendFont, setDataPointLegends, setMultipleValues, setTitle, setToolTipText, setValuesFormat, setValuesQuery
 
Methods inherited from class com.jinsight.jetchart.AbstractSerie
addMultipleValues, addValue, finalize, getId, getMultipleValues, getValues, setHighlightColor, setHighlightEnabled, setId, setLegendEnabled, setMultipleValues, setSVGURLs, setToolTipContent, setToolTipEnabled, setValueFormat, setValues, setValues
 
Methods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PolarAreaSerie

public PolarAreaSerie()
Creates a PolarAreaSerie object. Default constructor.


PolarAreaSerie

public PolarAreaSerie(double[][] multipleValues)
Creates a PolarAreaSerie object. This constructor takes a bidimensional array of double precision numbers. Each subarray of the bidimensional array has the radius(r) and angle(theta) values that define the position of a data point on a polar coordinate system.

Parameters:
multipleValues - Bidimensional array of double precision numbers.

PolarAreaSerie

public PolarAreaSerie(double[][] multipleValues,
                      java.lang.String title)
Creates a PolarAreaSerie object. This constructor takes a bidimensional array of double precision numbers as the first argument and the series title as the second argument. Each subarray of the bidimensional array has the radius(r) and angle(theta) values that define the position of a data point on a polar coordinate system.

Parameters:
multipleValues - Bidimensional array of double precision numbers.
title - A String object. The series title is displayed inside the legend box.
Method Detail

setBorderColor

public void setBorderColor(java.awt.Color borderColor)
Sets the color of the area's border. Default color is black.

Parameters:
borderColor - A Color object.