com.jinsight.jetchart
Class PolarAreaSerie
java.lang.Object
com.jinsight.jetchart.AbstractSerie
com.jinsight.jetchart.PolarSerie
com.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
|
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 |
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.
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.