public interface ITrendLineSet
A handle to an object that implements this interface can be obtained by calling the gethTrendLines method defined in QbChart.
ITrendLine
Modifier and Type | Method and Description |
---|---|
void |
add(ITrendLine l)
Adds a new trend line to the chart.
|
java.util.Enumeration |
elements()
Returns the list of trend lines defined in the chart.
|
ITrendLine |
newInstance()
Create a new trend line to add to the chart.
|
void |
remove(ITrendLine l)
Delete the specified trend line from the chart.
|
void |
removeAll()
Removes all the trend lines currently defined in the chart.
|
void |
set(java.util.Enumeration elements)
Sets a list of trend lines in the chart.
|
ITrendLine newInstance()
ITrendLine
void add(ITrendLine l)
Associated QbChart property: TRENDLINE
l
- The trend line to add to the chart.ITrendLine
void remove(ITrendLine l)
Associated QbChart property: DEL_TRENDLINE
l
- The trend line to remove from the chart.void removeAll()
java.util.Enumeration elements()
Associated QbChart property: TRENDLINELIST
void set(java.util.Enumeration elements)
elements
- The list of new trend lines to add to the chart. Each element of the list should
be of type quadbase.util.ITrendLine.ITrendLine