Applet Example 3
In this
example the applet will acquire both the configuration and
graph data from text files.
The configuration
data is acquired from the text file pieprops.txt
(click here to view)
and the graph data is acquired from the text file piedata.txt
(click here to view).
and here
is the HTML code,
<applet code="PiechartApplet.class"
archive="PieChart.jar" width="550" height="450">
<!-- Start Up Parameters -->
<PARAM name="LOADINGMESSAGE" value="Creating
Chart - Please Wait."> <!-- Message to be displayed
on Startup -->
<PARAM name="STEXTCOLOR" value="0,0,100">
<!-- Message Text Color-->
<PARAM name="STARTUPCOLOR" value="255,255,255">
<!-- Applet Background color -->
<!-- Data files
-->
<PARAM name="chartproperties" value="pieprops.txt">
<PARAM name="chartdata" value="piedata.txt">
</applet>
<< back to Examples Index
<< back to Getting
Started
|