chart 4

Where can I download chart 4 Jar file?

Thanks!

Can I use Vaadin Chart in client side only?

Thanks!

You can download charts 4.0.0.beta1 from
directory
.
By default directory shows 3.2.0 version, you can change it using combobox just below the charts icon.

If you are using maven in your project. It’s easier just to add a dependency to you POM

<dependency> <groupId>com.vaadin</groupId> artifactId>vaadin-charts</artifactId> version>4.0.0-beta1</version> </dependency> <repository> <id>vaadin-addons</id> <url>http://maven.vaadin.com/vaadin-addons</url> </repository>
NOTE
it’s using vaadin framework 8.0.0.beta1.

“Can I use Vaadin Chart in client side only?”
What do you mean? Tehcnically Vaadin Charts logic is done on client side, because it’s using Highcharts library, that is JavaScript. The configuration of the charts is done on the server side, so you have clear and easy to use Java API for it.

I prefer D3JS over Highcharts. Do you have plan to support D3JS behind your api?

James