Re: JfreeChart plugin and dynamic size of the images

2010-11-04 Thread Maurizio Cucchiara
Did you try to use dynamic variables inside your result declaration? Something like this: chart png ${width} ${height} 2010/11/4 mccorby : > > I forgot to tell the environment I'm working with: > - Struts2 2.2.1 > - struts2-jfreechart-plugin-2.2.1 > > > mccorby wrote: >> >> Hi all

Re: JfreeChart plugin and dynamic size of the images

2010-11-04 Thread mccorby
I forgot to tell the environment I'm working with: - Struts2 2.2.1 - struts2-jfreechart-plugin-2.2.1 mccorby wrote: > > Hi all, > I am using jfreechart plugin to display charts in the application. > Everything was ok until I found out that certain images were clipped. > This happens to charts

Re: JFreeChart plugin

2008-07-19 Thread Pedro Herrera
I have the same problem. Have you discovered a workaround ? I need to call my chart each 30 seconds to get updated data and refresh chart : - this way bring correcty the chart, but call my char action one time: chart.action - this way call the chart action correcty each 30 seconds, bu

Re: JFreeChart plugin

2008-05-13 Thread Randy Burgess
oper Nuvox Communications > From: Leena Borle <[EMAIL PROTECTED]> > Reply-To: Struts Users Mailing List > Date: Tue, 13 May 2008 13:50:00 -0700 > To: Struts Users Mailing List > Subject: Re: JFreeChart plugin > > Hi, > I'm using Tomcat-5.5.25. I found out that, if I

Re: JFreeChart plugin

2008-05-13 Thread Felipe Lorenz
Hi, did you try put the action (DrawChart_display.action) in HREF attribute of the DIV? I use js to do it! Something like: function refresh() { var div = dojo.widget.byId('#div_id'); div.href = 'DrawChart_display.action' + params_if_have; div.refresh(); } Felipe Augusto Lorenz www.idealogic.c

Re: JFreeChart plugin

2008-05-13 Thread Leena Borle
Hi, I'm using Tomcat-5.5.25. I found out that, if I include action's url in , it gets displayed. I am trying to display chart using Remote-Button/Remote-DIV method of S2. Which means when user submits form data, I need to display chart inside a DIV below this form. something like this ...

Re: JFreeChart plugin

2008-05-13 Thread Randy Burgess
I used the example code from the documentation on WebLogic 9.2.2 and it ran fine. I built off that example code and now have several actions creating nice 3D pie charts. Which application server are you using? Regards, Randy Burgess Sr. Web Applications Developer Nuvox Communications > From: Le