space
Previous Page | Next Page

MDDB Report Viewer 9.2

_OUTPUT_CLICKABLE_GRAPH_ Method

Outputs the <APPLET> tag for the 3D Clickable graph

In addition, the method outputs the Drive Applet Javascript function that initializes this graph.

Syntax

 
CALL SEND(OBJID,'_OUTPUT_CLICKABLE_GRAPH_',url, 
     service-name,graph-type, analysis-variable,
	 statistic,down-variable, across-variable,
	 webcls, by-type, by-value, bar-shape);
Where... Is Type... And Contains...
url C the broker component of the URL.
service-name C the broker service value.
graph-type C the graph type (BLOCK, HBAR, PIE, PLOT, VBAR).
analysis-variable C the analysis variable that is to be graphed.
statistic C the statistic that is to be graphed.
down-variable C the down variable that is to be graphed.
across-variable C the across variable that is to be graphed.
webeis-class C the WEBEIS class name.
background-type C the background type (IMAGE or COLOR). This value is optional.
background-value C the background value. This value is optional.
bar-shape C the graph bar shape (Block, Cylinder, Hexagon, Prism, Star).

Example

url='/cgi-bin/broker';
graphtype='  ';
service= 'default';
grphvar='ACTUAL';
grphstat='SUM';
down='COUNTRY';
across='YEAR';
bgtype= 'COLOR';
bg= 'YELLOW';
title= '1995 Sales Report';
webcls= 'SASHELP.WEBCAT.MYWEB.CLASS';
barshape='Star';
call send(webid, barshape='Star', '_OUTPUT_CLICKABLE_GRAPH_', url, service,
          grphtype, grphvar, grphstat, down, across, webcls, bgtype,
		  by, barshape);
         

The following output is produced:

</TD></TR>
</FORM>
</TD></TR>
<TR><TD>><HR><A HREF="http://www.test.com/mddbpage.html">Select New
File</A></TD></TR>


Previous Page | Next Page | Top of Page