Andrew Hubbs
Andrew Hubbs

Reputation: 9436

What is a good Javascript graphing library to use with GWT application?

Do you have any suggestions of graphing libraries to use with a GWT project? I need to graph a set of data points and several lines. Also some shading of the area under a line. I am open to suggestions of straight Javascript libraries or Java that I can just use with GWT.

Upvotes: 5

Views: 2662

Answers (3)

Adam
Adam

Reputation: 5599

I recommend GWT Highcharts, a GWT wrapper of Highcharts library.

Upvotes: 1

bakkal
bakkal

Reputation: 55448

D3.js

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

Google Visualization API

Google Visualization API has a GWT binding which is no longer under active development

Upvotes: 2

mudface
mudface

Reputation: 15

I'm currently using Google Visualization API but just wanted to bring attention to:

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

Keep in mind not ALL of the Google Visualization charts are completely javascript (ie The Motion Chart which is flashed based).

Upvotes: 0

Related Questions