Clearly, this is not satisfactory. However, before we get this fixed, consider how we get a
graph in the main document in the first place. All that is different here from previous examples is that
we have replaced the standard GRopengraphwindow()
call with GRsetgraphwindow(), and
the call to GRclosegraphdocument() is not used.
function dograph(){
GRsetgraphwindow()
Info=new Array()
Info.style=".xaxisnum {font-size:8pt} .yaxisnum {font-size:8pt}"
Info.xmin=Info.ymin=0
Info.xmax=Info.ymax=10
Info.xticmajor=Info.xticminor=1
Info.yticmajor=Info.yticminor=1
Info.graphleft=325
Info.graphtop=150
Info.graphwidth=200
Info.graphheight=200
Info.ptsize=4
Info.xstep=4
GRdrawgraph("sin(x)*sin(x)*x","","",Info)
}
This is done at the end of the BODY section of the web page using the line:
<script language=javascript>dograph()</script>
This may or may not look right on your screen. Is the graph centered in the white box?
If so, resize the page and check again. Notice a problem? The graph stays precisely where it
is originally, even as the other elements of the page move around!
Here then is one of the
truly problematic issues with divs: If the page can be resized, how does one
indicate that the graph is to move with the rest of the elements of the page?
To see how this is done properly, go to the next page.
x
y
back to the list of examples
copyright 2001 Robert M. Hanson. All rights reserved. divgraph.js is freely distributable for noncomercial purposes, provided reference is made as "divgraph.js was developed at St. Olaf College by Robert M. Hanson (http://www.stolaf.edu/people/hansonr/divgraph)." Commercial licensing is available for specific purposes.