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 Details

    • getLabelOffset

      Dimension getLabelOffset(int index)
      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

      void setLabelOffset(int index, Dimension offset)
      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

      void setLabelOffset(Dimension[] offset)
      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

      void setAreaCutOffPoint(Double value)
      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