The ChartSettings application displays a chart constructed from some pre-loaded data avaiable on a data file. A side bar on the left serves as the interface by which to manipulate the selected parameters of the chart by means of buttons and dialob boxes. The user enters the information or selects an option on the side bar which then gets incorporated onto the graph on the right side.
The Chart Template Builder embedds the eSuite Chart Applet. This is where all the characteristics of the Chart Applet are set.The applet size is set to a 500x450 pixel box. Paramter values are specified for Rendering, SeriesMixedType, SeriesLayout, and hideic. All other Chart Applet parameters not specified retain their default values.
<APPLET
CODE="lotus.chart.ChartApplet"
CODEBASE="http://www.myserver.com/Kona"
WIDTH=500
HEIGHT=450
NAME="ChartSet">
<PARAM NAME="Rendering" VALUE="3D">
<PARAM NAME="SeriesMixedType" VALUE="Line,Bar,Bar,Bar">
<PARAM NAME="SeriesLayout" VALUE="Behind">
<PARAM NAME="Hideic" VALUE="true">
</APPLET>
The Chart Setting Application embedds the eSuite FileReader Applet. This applet parses the data from the specified datasource and sends it to its destination. Since this applet has no interface we set the Height and Width values to 1 and make it invisible on the web page. The datasource in the Chart Settings Application is the ChartPosNumSrc file. This is specified in the "fileName" PARAM tag. The destination is specified in the "outputName" PARAM tag. In the Chart Settings application the "outputName" is set to ChartSet which is the name given to the Chart Applet in its APPLET tag.
<APPLET
CODE="lotus.filereader.FileReader.class"
CODEBASE="http://www.myserver.com/Kona"
WIDTH=1
HEIGHT=1
NAME="FileReader">
<PARAM NAME="fileName" VALUE="ChartPosNumSrc">
<PARAM NAME="outputName" VALUE="ChartSet">
</APPLET>
"" | "Col 1" | "Col 2" | "Col 3" | "Col 4" | "Col 5" |
---|---|---|---|---|---|
Row 1 | 1. | 5. | 9. | 13. | 17. |
Row 2 | 2. | 6. | 10. | 14. | 18. |
Row 3 | 3. | 7. | 11. | 15. | 19. |
Row 4 | 4. | 8. | 12. | 16. | 20. |
Use the following procedure to install and run this application in your browser
For more information on template builders and installation guidelines see the Templates page.