<APPLET CODEBASE="http://www.oocities.org/dynamic_graphs" CODE="graph.class" HEIGHT=180 WIDTH=400>
(You can alter the height and width to whatever you want)
<PARAM NAME=GraphMax VALUE=30>
(Use to specify the upper limit for your graph)
<PARAM NAME=LabOffset VALUE=10>
(The number of pixels to the left of their ticks which the 'x' axis labels begin at. Increase for long lables.)
<PARAM NAME=NumberOfLabs VALUE=5>
(Number of 'x' axis labels.)
<PARAM NAME=Lab1 VALUE="Jan-99">
<PARAM NAME=Lab2 VALUE="Apr-99">
<PARAM NAME=Lab3 VALUE="Jul-99">...etc.
(These parameters specify the 'x' axis labels you want displayed on your graph. There should be as many labels as are specified in the "NumberOfLabs" parameter.)
<PARAM NAME=LineColor_R VALUE=255>
<PARAM NAME=LineColor_G VALUE=0>
<PARAM NAME=LineColor_B VALUE=0>
(These 3 parameters specify the Red-Green-Blue values for the color of the graphing line to be drawn. Use values between 0 and 255.)
<PARAM NAME=NumberOfVals VALUE=30>
(You can alter the value to whatever you want - this determines how many points will be shown on the graph)
<PARAM NAME=Val1 VALUE="29.1">
<PARAM NAME=Val2 VALUE="12.5">
<PARAM NAME=Val3 VALUE="10.3">...etc.
(These parameters specify the values you want displayed on your graph. There should be as many values as are specified in the "NumberOfVals" parameter.)
</APPLET>