public interface IControlRangeSet
Modifier and Type | Method and Description |
---|---|
void |
addElement(ControlRange l)
Adds a new ControlRange into the chart.
|
ControlRange |
elementAt(int i)
get the specified control range from the chart.
|
int |
getThickness()
get the thickest control range thickness (For Dial Chart Only)
|
int |
indexOf(ControlRange l)
Searches for the first occurence of the given control range
|
void |
insertElementAt(ControlRange l,
int index)
insert a new ControlRange at the specified index.
|
void |
removeAllElements()
Removes all the control ranges added to the chart.
|
void |
removeElement(ControlRange l)
Removes the specified controlRange from the chart.
|
void |
removeElementAt(int index)
Removes the specified controlRange from the chart.
|
void |
setThickness(int thickness)
set control range thickness (For Dial Chart Only)
|
int |
size()
count number of the control ranges
|
int size()
int indexOf(ControlRange l)
l
- The ControlRange object containing the range information.void addElement(ControlRange l)
Associated QbChart property: CONTROLRANGE
l
- The ControlRange object containing the range information.ControlRange
void insertElementAt(ControlRange l, int index)
Associated QbChart property: CONTROLRANGE
l
- The ControlRange object containing the range information.index
- index numberControlRange
void removeAllElements()
ControlRange elementAt(int i)
void removeElement(ControlRange l)
l
- The ControlRange object to remove.ControlRange
void removeElementAt(int index)
index
- The index of ControlRange object to remove.ControlRange
void setThickness(int thickness)
thickness
- The thickness of control rangeint getThickness()