What is a good Javascript graphics library to use with the GWT app?

Do you have any suggestions on graphic libraries for use with the GWT project? I need to draw a set of data points and a few lines. Also some shading of the area under the line. I am open to offers of direct Javascript or Java libraries that I can only use with GWT.

+5
source share
3 answers

D3.js

gwt-d3 is the GWT wrapper library around D3.js

Google visualization API

The Google visualization API has a GWT binding that is no longer under active development.

+2
+1

I am currently using the Google Visualization API, but just wanted to pay attention to:

raphaelGWT ( http://code.google.com/p/raphaelgwt/ )
Ext-GWT ( http://www.extjs.com/products/gwt/ )

Keep in mind that not all Google Visualization diagrams are fully javascript (i.e. the motion diagram on which the flash is based).

0
source

All Articles