|
DataGraph plots series of data points, analytic functions, and geometric objects. It is embedded using the following html tag:
<applet codebase="../classes/" archive="DataGraph4_.jar,STools4.jar" code="dataGraph.DataGraph.class" name="DataGraph" width="400" height="300"> <param name="Function" value="sin(1/x)" /> <param name="XMin" value="-5" /> <param name="XMax" value="5" /> <param name="YMin" value="-1.1" /> <param name="YMax" value="1.1" /> <param name="AutoScaleX" value="false" /> <param name="AutoScaleY" value="false" /> <param name="ShowControls" value="true" /> <param name="DataFile" value="filename" /> </applet>
DataGraph Parameters |
||
AutoScaleX | boolean | Automatically scale the x axis to fit the data. |
AutoScaleY | boolean | Automatically scale the y axis to fit the data. |
DataFile | boolean | A text file containing (x,y) data points that is loaded at startup. |
Function | string | The analytic function, F(x), to be plotted. |
ShowControls | boolean | True to show simple user interface. |
XMin | double | X scale minimum if autoscale is false. |
XMax | double | X scale maximum if autoscale is false. |
YMin | double | Y scale minimum if autoscale is false. |
YMax | double | Y scale maximum if autoscale is false. |
STools Parameters |
||
AppletNames | string | A comma delimited list of applet names occurring within this html page. (See OnLoad.) |
Debug | int | Enables debugging messages in Java console; 0 = no messages, 255 = verbose messages. |
OnLoad | string | A JavaScript function that will be invoked using LiveConnect after all applets have been loaded. (See AppletNames.) |
Resources | string | A file containing translations of internal text such as buttons and labels. |