Package quadbase.util
Interface IRadarPropertySet
public interface IRadarPropertySet
This interface is used to modify the properties associated with a 2D radar chart.
A handle to an object that implements this interface can be obtained by calling the
gethRadarProperties method defined in QbChart.
eg. QbChart chart = new QbChart(...); IRadarPropertySet = chart.gethRadarProperties();
-
Method Summary
Modifier and TypeMethodDescriptionintThis method sets number of label offsetsThis method returns the value of the cut-off point for radar areagetLabelOffset(int index) This method returns the dimension of the label offsetbooleanThis method returns state of drawing circular gridbooleanThis method returns state of synchronize all axesvoidsetAreaCutOffPoint(Double value) This method sets the cut-off point for radar areavoidsetDrawCircularGrid(boolean state) This method sets drawing circular grid.voidsetLabelOffset(int index, Dimension offset) This method sets the offset for specific labelvoidsetLabelOffset(Dimension[] offset) This method sets offset for all labelsvoidsetSynchronizeRadarAxes(boolean state) This method synchronize all the axes for radar chart
-
Method Details
-
getLabelOffset
This method returns the dimension of the label offset- Parameters:
index- the index of the label (position in category column)- Returns:
- the offset dimension for specific label
-
setLabelOffset
This method sets the offset for specific label- Parameters:
index- the index of the label (position in category column)offset- the label offset dimension
-
setLabelOffset
This method sets offset for all labels- Parameters:
offset- array of labels offset dimension
-
countLabelOffset
int countLabelOffset()This method sets number of label offsets- Returns:
- number of label offset
-
setSynchronizeRadarAxes
void setSynchronizeRadarAxes(boolean state) This method synchronize all the axes for radar chart- Parameters:
state- synchronize axes
-
isSynchronizeRadarAxes
boolean isSynchronizeRadarAxes()This method returns state of synchronize all axes- Returns:
- state of synchronize axes
-
setDrawCircularGrid
void setDrawCircularGrid(boolean state) This method sets drawing circular grid.- Parameters:
state- of drawing circular grid
-
isDrawCircularGrid
boolean isDrawCircularGrid()This method returns state of drawing circular grid- Returns:
- state of drawing circular grid
-
setAreaCutOffPoint
This method sets the cut-off point for radar area- Parameters:
value- of the cut-off point for radar area
-
getAreaCutOffPoint
Double getAreaCutOffPoint()This method returns the value of the cut-off point for radar area- Returns:
- value of the cut-off point for radar area
-