Beautiful and interactive javascript charts for Java-based web applications.
- Check out the Changelog
- Check out the Feature Overview with coding examples
- Browse the Javadoc
- Download and run the Showcase application for your web framework
- Check out the FAQ
- Subscribe to the Mailing List
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.
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]
For a kick start on how to use Wicked Charts in your Wicket or JSF application, visit the Getting Started page.
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).
Feel free to clone this repository and submit pull request. We'll see to get them merged into the main project.
Depending on what web framework you use, add one of the following dependencies to your Maven build:
<dependency>
<groupId>com.googlecode.wicked-charts</groupId>
<artifactId>wicked-charts-wicket7</artifactId>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>com.googlecode.wicked-charts</groupId>
<artifactId>wicked-charts-wicket6</artifactId>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>com.googlecode.wicked-charts</groupId>
<artifactId>wicked-charts-wicket15</artifactId>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>com.googlecode.wicked-charts</groupId>
<artifactId>wicked-charts-wicket14</artifactId>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>com.googlecode.wicked-charts</groupId>
<artifactId>wicked-charts-jsf21</artifactId>
<version>2.0.0</version>
</dependency>
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>2.0.0</version>
</dependency>