You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@wicket.apache.org by gasper <ku...@gmail.com> on 2019/03/22 10:53:11 UTC

Adding Guage Charts to Wicket

I have knowledge on how to use JfreeChart on Java SE but on Wicket I can't
find any useful links that shows how to use Jfreechart with Wicket.

Can someone kindly help me out with JfreeChart integration with wicket?
Thanks

--
Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: Adding Guage Charts to Wicket

Posted by Maxim Solodovnik <so...@gmail.com>.
You can also use some other chart components from wicketstuff:
https://github.com/wicketstuff/core

On Fri, 22 Mar 2019 at 23:18, gasper <ku...@gmail.com> wrote:

> It works...
>
> Thanks
>
> --
> Sent from:
> http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>

-- 
WBR
Maxim aka solomax

Re: Adding Guage Charts to Wicket

Posted by gasper <ku...@gmail.com>.
It works...

Thanks

--
Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: Adding Guage Charts to Wicket

Posted by Maxim Solodovnik <so...@gmail.com>.
org.apache.wicket.markup.html.image.resource.DynamicImageResource ->
org.apache.wicket.request.resource.DynamicImageResource
org.apache.wicket.Resource -> org.apache.wicket.request.resource.
AbstractResource
(or maybe org.apache.wicket.request.resource.IResource)
org.apache.wicket.protocol.http.WebResponse ->
org.apache.wicket.request.http.WebResponse

On Fri, 22 Mar 2019 at 20:00, gasper <ku...@gmail.com> wrote:

> Thanks.... for the sample link.
>
> I am currently using Wicket 6.30.0
> But when I try to test the code samples, lot of errors came up most
> especially with the import statements.
>
>
> import org.apache.wicket.Resource;
> import org.apache.wicket.markup.html.image.resource.DynamicImageResource;
> import org.apache.wicket.protocol.http.WebResponse;
>
> I tried importing it again but it seems they are not available on my wicket
> version or so.
>
> Kindly help out.
>
>
>
> --
> Sent from:
> http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>

-- 
WBR
Maxim aka solomax

Re: Adding Guage Charts to Wicket

Posted by gasper <ku...@gmail.com>.
Thanks.... for the sample link.

I am currently using Wicket 6.30.0
But when I try to test the code samples, lot of errors came up most
especially with the import statements.


import org.apache.wicket.Resource;
import org.apache.wicket.markup.html.image.resource.DynamicImageResource;
import org.apache.wicket.protocol.http.WebResponse;

I tried importing it again but it seems they are not available on my wicket
version or so.

Kindly help out.



--
Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: Adding Guage Charts to Wicket

Posted by Maxim Solodovnik <so...@gmail.com>.
https://cwiki.apache.org/confluence/display/WICKET/JFreeChart+and+wicket+example

On Fri, 22 Mar 2019 at 18:43, gasper <ku...@gmail.com> wrote:

> I have knowledge on how to use JfreeChart on Java SE but on Wicket I can't
> find any useful links that shows how to use Jfreechart with Wicket.
>
> Can someone kindly help me out with JfreeChart integration with wicket?
> Thanks
>
> --
> Sent from:
> http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>

-- 
WBR
Maxim aka solomax