RE: Updating a Dynamic Image with AJAX (and JFreeChart)

2009-11-14 Thread Swarnim Ranjitkar
I would be nice for this work as we have a JFreeChart written which is called by other apps too. > Date: Sat, 14 Nov 2009 10:23:38 +0100 > From: zabia...@gmail.com > To: user se...@wicket.apache.org > Subject: Re: Updating a Dynamic Image with AJAX (and JFreeChart) > &

Re: Updating a Dynamic Image with AJAX (and JFreeChart)

2009-11-14 Thread Wojtek
return toImageData(chart.createBufferedImage(width, height)); } }; } } To: users@wicket.apache.org From: craig.mcil...@openroadsconsulting.com Subject: Re: Updating a Dynamic Image with AJAX (and JFreeChart) Date: Fri, 13 Nov 2009 23:31:39 -0500 Look

RE: Updating a Dynamic Image with AJAX (and JFreeChart)

2009-11-13 Thread Swarnim Ranjitkar
art chart = (JFreeChart)getDefaultModelObject(); return toImageData(chart.createBufferedImage(width, height)); } }; } } > To: users@wicket.apache.org > From: craig.mcil...@openroadsconsulting.com > Subject: Re: Updating a Dynamic Image w

Re: Updating a Dynamic Image with AJAX (and JFreeChart)

2009-11-13 Thread McIlwee, Craig
..@hotmail.com] To: users@wicket.apache.org Sent: Fri, 13 Nov 2009 20:32:05 -0500 Subject: Re: Updating a Dynamic Image with AJAX (and JFreeChart) I have same situation. I'm not able to refresh my image. But if i view the image i do get refreshed image Here is my code. Based on my dro

Re: Updating a Dynamic Image with AJAX (and JFreeChart)

2009-11-13 Thread wicketnewuser
I have same situation. I'm not able to refresh my image. But if i view the image i do get refreshed image Here is my code. Based on my dropdownchoice it should make new Jfreechart and the image should refresh. I couldn't get it working so i wrapped the image with in a span but it still doesn't wor

Re: Updating a Dynamic Image with AJAX (and JFreeChart)

2009-06-24 Thread nickponico
I resume an old conversation, but i've a similar problem. I have exactly same situation : a dynamic image generated at runtime, with a non caching image i can refresh it easily. It all works on my pc (and my jboss). But when I upload this on the server it doesn't work... i think that it could b

Re: Updating a Dynamic Image with AJAX (and JFreeChart)

2008-02-12 Thread scottomni
I have been unable to get the JFreeChart ToolTips to work in Wicket (NetBeans 6.0). The wiki example sets the tooltips flag to true, but the resulting web page contains no image map... thus, no tooltips. Should this work? Thanks, Scott -- View this message in context: http://www.nabble.com/

Re: Updating a Dynamic Image with AJAX (and JFreeChart)

2007-09-26 Thread Andrew Klochkov
Jason Mihalick wrote: Thanks for the tip. That worked! That was too easy. :-) It's possible update the image in a more smooth manner (to avoid blinking). Java part: target.appendJavascript("refreshImage(document.getElementById('" + graphImage.getMarkupId() + "'));"); And the sc

Re: Updating a Dynamic Image with AJAX (and JFreeChart)

2007-09-25 Thread Jason Mihalick
Thanks for the tip. That worked! That was too easy. :-) -- Jason David Bernard-2 wrote: > > Hi, > > Have you try to extend NonCachingImage instead of Image (and comments > setHeaders(...))? > > /david > > Jason Mihalick wrote: >> I am integrating JFreeChart into my application and I've f

Re: Updating a Dynamic Image with AJAX (and JFreeChart)

2007-09-25 Thread David Bernard
Hi, Have you try to extend NonCachingImage instead of Image (and comments setHeaders(...))? /david Jason Mihalick wrote: I am integrating JFreeChart into my application and I've followed the JFreeChart example on the wiki. That works very nicely. I was impressed. What I want to do now is

Updating a Dynamic Image with AJAX (and JFreeChart)

2007-09-25 Thread Jason Mihalick
I am integrating JFreeChart into my application and I've followed the JFreeChart example on the wiki. That works very nicely. I was impressed. What I want to do now is update the graph that I display based on the selection from a drop down list. I've successfully added the DropDownChoice compo