_OUTPUT_GRAPH_LIST_ Method
Outputs the list of graph types. This method outputs the following:
- the <SELECT> tag
- an <OPTION> tag for each graph type
Syntax
CALL SEND(OBJID,'_OUTPUT_GRAPH_LIST_',grphtype,vrflag);
Where... |
Is Type... |
And Contains... |
grphtype |
C |
the previously selected graph type. |
vrflag |
N |
the view report button flag, which takes the following values:
1 = View Report button click on previous action
0 = No View Report button click on previous action. |
Example
The following is an example of the output produced by this method:
<TR><TD CLASS="label">Type</TD>
<TD><SELECT NAME="grt" CLASS="select">
<OPTION SELECTED VALUE=NONE>None
<OPTION VALUE=VBAR>Vertical bar
<OPTION VALUE=BLOCK>Block
<OPTION VALUE=HBAR>Horizontal bar
<OPTION VALUE=PIE>Pie
<OPTION VALUE=PLOT>Plot
|