com.jinsight.jetchart
Class RadarPointSerie

java.lang.Object
  extended bycom.jinsight.jetchart.AbstractSerie
      extended bycom.jinsight.jetchart.RadarSerie
          extended bycom.jinsight.jetchart.RadarPointSerie

public class RadarPointSerie
extends RadarSerie

A radar point series paints geometrical shapes on data points' coordinates. The class RadarPointSerie extends RadarSerie to implement the properties of a radar point series.

See Also:
RadarSerie

Field Summary
static int CIRCLE
          Constant used to define the point shape to a circle.
static int CROSS
          Constant used to define the point shape to a cross.
static int DOT
          Constant used to define the point shape to a dot.
static int SQUARE
          Constant used to define the point shape to a square.
static int TRIANGLE
          Constant used to define the point shape to a triangle.
 
Fields inherited from class com.jinsight.jetchart.AbstractSerie
CLIENT_SIDE, SERVER_SIDE_CERN, SERVER_SIDE_NCSA
 
Constructor Summary
RadarPointSerie()
          Creates a RadarPointSerie object.
RadarPointSerie(double[] values)
          Creates a RadarPointSerie object.
RadarPointSerie(double[] values, java.lang.String title)
          Creates a RadarPointSerie object.
 
Method Summary
 void setHeight(int height)
          Sets the height of a point shape.
 void setShape(int shape)
          Sets data point shape.
 void setWidth(int width)
          Sets the width of a point shape.
 
Methods inherited from class com.jinsight.jetchart.RadarSerie
finalize, getSerieMap, getTitle, getToolTipValues, setColor, setTitle, setValues, setValuesQuery
 
Methods inherited from class com.jinsight.jetchart.AbstractSerie
addMultipleValues, addValue, getId, getMultipleValues, getValues, setHighlightColor, setHighlightEnabled, setId, setLegendEnabled, setMultipleValues, setMultipleValues, setSVGURLs, setToolTipContent, setToolTipEnabled, setValueFormat, setValues
 
Methods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

SQUARE

public static final int SQUARE
Constant used to define the point shape to a square.

See Also:
Constant Field Values

CIRCLE

public static final int CIRCLE
Constant used to define the point shape to a circle.

See Also:
Constant Field Values

TRIANGLE

public static final int TRIANGLE
Constant used to define the point shape to a triangle.

See Also:
Constant Field Values

CROSS

public static final int CROSS
Constant used to define the point shape to a cross.

See Also:
Constant Field Values

DOT

public static final int DOT
Constant used to define the point shape to a dot.

See Also:
Constant Field Values
Constructor Detail

RadarPointSerie

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


RadarPointSerie

public RadarPointSerie(double[] values)
Creates a RadarPointSerie object. This constructor takes an array of double precision numbers.

Parameters:
values - Array of double precision numbers.

RadarPointSerie

public RadarPointSerie(double[] values,
                       java.lang.String title)
Creates a RadarPointSerie object. This constructor takes an array of double precision numbers as the first argument and the series title as the second argument. The series title is displayed inside the legend box.

Parameters:
values - Array of double precision numbers.
title - A String object.
Method Detail

setShape

public void setShape(int shape)
Sets data point shape. Five shapes are available: circle, square, triangle, cross and dot.

Parameters:
shape - one of the constants used to set the point shape.
See Also:
SQUARE, CIRCLE, TRIANGLE, CROSS, DOT

setWidth

public void setWidth(int width)
Sets the width of a point shape. Has no effect on DOT shapes. Default value is 6 pixels.

Parameters:
width - An integer value, larger than zero.
See Also:
setShape(int), setHeight(int)

setHeight

public void setHeight(int height)
Sets the height of a point shape. Has no effect on DOT shapes. Default value is 6 pixels.

Parameters:
height - An integer value, larger than zero.
See Also:
setShape(int), setWidth(int)