robanoz / wicked-charts

Beautiful and interactive javascript charts for Java-based web applications.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Wicked Charts

Beautiful and interactive javascript charts for Java-based web applications.

Build Status

What is Wicked Charts?

Wicked Charts is a Java wrapper of the Highcharts javascript library. Highcharts provides eye-pleasing charts using HTML5 SVG technology (see http://www.highcharts.com/demo). With Wicked Charts, you can configure a chart in Java and display it in any web application based on Apache Wicket or JSF. Or you can use the Highcharts Java wrapper to integrate it in web applications built with other java web frameworks.

Example chart

Please note that while Wicked Charts is licensed under Apache 2.0 License, Highcharts itself is only free for non-commercial use. See here: [http://shop.highsoft.com/highcharts.html]

How does it work?

For a kick start on how to use Wicked Charts in your Wicket or JSF application, visit the Getting Started page.

Your web framework is not supported?

If your Java-based framework of choice is not supported by Wicked Charts, feel free to get in touch with us. It shouldn't be much work to get the basic features also working for your framework (most of the work has already been done).

Want to contribute?

Feel free to clone this repository and submit pull request. We'll see to get them merged into the main project.

Maven coordinates

Depending on what web framework you use, add one of the following dependencies to your Maven build:

Wcket 6.x

<dependency>
  <groupId>com.googlecode.wicked-charts</groupId>
  <artifactId>wicked-charts-wicket6</artifactId>
  <version>1.5.0</version>
</dependency>

Wicket 1.5.x

<dependency>
  <groupId>com.googlecode.wicked-charts</groupId>
  <artifactId>wicked-charts-wicket15</artifactId>
  <version>1.5.0</version>
</dependency>

Wicket 1.4.x

<dependency>
  <groupId>com.googlecode.wicked-charts</groupId>
  <artifactId>wicked-charts-wicket14</artifactId>
  <version>1.5.0</version>
</dependency>

JSF 2.1

<dependency>
  <groupId>com.googlecode.wicked-charts</groupId>
  <artifactId>wicked-charts-jsf21</artifactId>
  <version>1.5.0</version>
</dependency>

Java Wrapper

If you want to use the Java abstraction and JSON serializer of the Highcharts options (for example to add Highcharts to an application built with a different web framework than Wicket ot JSF), add the following dependency:

<dependency>
  <groupId>com.googlecode.wicked-charts</groupId>
  <artifactId>wicked-charts-highcharts</artifactId>
  <version>1.5.0</version>
</dependency>

About

Beautiful and interactive javascript charts for Java-based web applications.

License:Apache License 2.0