ritu mahajan

Greenhorn
+ Follow
since Apr 12, 2002
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by ritu mahajan

Originally posted by Dirk Schreckmann:
Sounds like something someone here could help you out with. If I may make a suggestion/request...
Just to clarify what you are trying to do, maybe you could provide a little "text picture" of what you are trying to do and the code that you have so far. For example:

Good Luck.


Dirk,
Thanks for the response.
I am trying to develop a multiseries bar graph applet.

|
y |
| h
| h v
| l h v l
| hl vh vhl
| vhl vh vhl
| vhl vhl vhl
| vhl vhl vhl
| vhl vhl vhl
--------------------
x
One bar for each item.
I appreciate your help.
Thanks,
Ritu
22 years ago
Hi,
I need to generate 2 applets to display bar graphs. One an aligned bar graph and the other a stacked bar graph comparing three values in each. I am able to get the drawing coordinants for one value, but then I'm stuck.
I'm confused as to how to display the graph showing all the three values.
thanks,
Ritu
22 years ago

Originally posted by Manfred Leonhardt:
Hi Ritu,
You would use JavaScript to create the HTML file that used the PARAM HTML tag to send in the values to your applet.
Then your applet would use the getParameter method inside its' init method.
FOr example:
HTML CODE:
< APPLET CODE="Ex" WIDTH=200 HEIGHT=100 >
< PARAM NAME="Value1" VALUE="35" >
< /APPLET >
Applet Code:

Regards,
Manfred.

22 years ago

Originally posted by Manfred Leonhardt:
Hi Ritu,
You would use JavaScript to create the HTML file that used the PARAM HTML tag to send in the values to your applet.
Then your applet would use the getParameter method inside its' init method.
FOr example:
HTML CODE:
< APPLET CODE="Ex" WIDTH=200 HEIGHT=100 >
< PARAM NAME="Value1" VALUE="35" >
< /APPLET >
Applet Code:

Regards,
Manfred.


Thanks Manfred.
I'll try that.
22 years ago
Hi,
I need to develop an applet that generates a Bar graph by getting values from a spreadsheet that a user enters.
The spreadsheet is an HTML file with some JavaScript.
How do I get the values from the spreadsheet and pass it to the applet class in order to generate thr bar graph?
thanks.
22 years ago