Hi Muz,
I have an example VisAD applet online at
http://www.ssec.wisc.edu/~curtis/applet/
The source code is at
http://www.ssec.wisc.edu/~curtis/applet/VisADApplet.java
Since I don't have any problems with the display
component's size, I suggest taking a look at the
source code to see how it differs from yours.
Good luck,
Curtis
At 09:40 AM 1/14/2003, you wrote:
>Hi,
>
>I am trying to use the "display.getComponent" to display in an applet.
>I defined a "getComponent" in SimpleDisplay.java,
>
> public Component getComponent(){
> return display.getComponent();
> }
>
>and use it in SimpleDisplayApplet.java,
>
> SimpleDisplay m_display = new SimpleDisplay(m_datafile);
> m_display.process();
> add(m_display.getComponent());
> showStatus("init ...");
>
>However, I found the size of the display component in the applet is fixed
>(about 270x270).
>My question is how to change the display size in the applet to make it
>propotional to the
>applet size?
>
>Thanks.
>
>Muz