/chart

Java library for use with Chart.js javascript library

Primary LanguageJavaApache License 2.0Apache-2.0

Chart.java

Maven Central badge Javadocs License

Chart.java enables integration with the excellent Chart.js library from within a Java application.

Usage example

In Java:

BarDataset dataset = new BarDataset()
		.setLabel("sample chart")
		.setData(65, 59, 80, 81, 56, 55, 40)
		.addBackgroundColors(Color.RED, Color.GREEN, Color.BLUE, Color.YELLOW, Color.ORANGE, Color.GRAY, Color.BLACK)
		.setBorderWidth(2);

BarData data = new BarData()
		.addLabels("Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday")
		.addDataset(dataset);

return new BarChart(data).toJson();

In JavaScript:

var ctx = document.getElementById('canvasId'));
new Chart(ctx, json);

Compatibility

Chart.js Chart.java
1.x 0.9.x
2.x 2.x

Test

See example charts by running the included unit tests:

mvn clean compile test

Javadoc

Browse this project's javadoc at javadoc.io.

Maven Central

Include this project directly from Maven Central

<dependency>
	<groupId>be.ceau</groupId>
	<artifactId>chart</artifactId>
	<version>2.3.1</version>
</dependency>

Download

Downloads for this project at Maven Central.

Other resources

The docs for Chart.js are a helpful source of info on what's possible and how to achieve it.

GnuPG public key

Verify signature files with my GnuPG public key.

License

Chart.java is licensed under the Apache 2.0 license.