Vaadin 24 addon for the Chart.js charting library. https://github.com/chartjs/Chart.js
This add-on was originally created by moberwasserlechner, and the repository is now archived. It was later reworked by rudiejd to work with Vaadin 14. JumpMind has taken it a bit further by upgrading the project dependencies, ensuring its compatibility with Java 17 and Vaadin 24+, and updating to the latest 2.X version of ChartJS. Potential implementation improvements include better state management (it currently sends state to the client every time it is changed), and reworking the library to work with ChartJS 4.x.
- Fluent api to configure the charts
- Supported chart types are
- Horizontal bar chart
- Vertical bar chart
- Line chart
- Donut chart
- Pie chart
- Polar area chart
- Bubble chart
- Radar chart
- Scatter line chart
- Zoom support
<dependencies>
<dependency>
<groupId>org.jumpmind.vaadin</groupId>
<artifactId>vaadin-chartjs</artifactId>
<version>${latest.version}</version>
</dependency>
</dependencies>
repositories {
mavenCentral()
}
dependencies {
compile ("org.jumpmind.vaadin:vaadin-chartjs:latest.version")
}
The basic usage is always the same. You need to create a new ChartJs() and configure it with a chart type specific config.
For more examples please see the demo app
ChartJs myChart = new ChartJs(config);
// enable logging to the javascript console. You can see some interessenting things there ;). Please do not use this in production because it's only needed for debugging.
myChart.setJsLoggingEnabled(true);
myChart.setWidth(50, Unit.PERCENTAGE);
// add a data point clicklistener
myChart.addClickListener((datasetIdx, dataIdx) -> {
BarDataset dataset = (BarDataset) barConfig.data().getDatasets().get(datasetIdx);
Notification.show("BarDataset at idx:" + datasetIdx + "; Data: idx=" + dataIdx + "; Value=" + dataset.getData().get(dataIdx), Type.WARNING_MESSAGE);
});
In this example we configure a horizontal bar chart with 3 dataset and add some random numbers to each of them.
BarChartConfig config = new BarChartConfig();
config
.data()
.labels("January", "February", "March", "April", "May", "June", "July")
.addDataset(new BarDataset().type().label("Dataset 1").backgroundColor("rgba(151,187,205,0.5)").borderColor("white").borderWidth(2))
.addDataset(new LineDataset().type().label("Dataset 2").backgroundColor("rgba(151,187,205,0.5)").borderColor("white").borderWidth(2))
.addDataset(new BarDataset().type().label("Dataset 3").backgroundColor("rgba(220,220,220,0.5)"))
.and();
config.
options()
.responsive(true)
.title()
.display(true)
.position(Position.LEFT)
.text("Chart.js Combo Bar Line Chart")
.and()
.done();
List<String> labels = config.data().getLabels();
for (Dataset<?, ?> ds : config.data().getDatasets()) {
List<Double> data = new ArrayList<>();
for (int i = 0; i < labels.size(); i++) {
data.add((double) (Math.random() > 0.5 ? 1.0 : -1.0) * Math.round(Math.random() * 100));
}
if (ds instanceof BarDataset) {
BarDataset bds = (BarDataset) ds;
bds.dataAsList(data);
}
if (ds instanceof LineDataset) {
LineDataset lds = (LineDataset) ds;
lds.dataAsList(data);
}
}
ChartJs chart = new ChartJs(config);
chart.setJsLoggingEnabled(true);
return chart;
Please have a look at the great documentation at ChartJs. (http://www.chartjs.org/docs)
You will see that every fluent api method under config.options()
has a counterpart in the javascript json config.
A built-in Jetty demo application is included. To start it:
- Run
mvn -Dtest=DemoView
from the project root. - Navigate to
http://localhost:8080/demo
.
- JDK 17
- Vaadin 24.x
The Vaadin-Chartjs is only a wrapper. So if you have any feature requests or found any bugs in the javascript lib please use Chart.js's issue tracker https://github.com/chartjs/Chart.js/issues
This repo includes a .editorconfig file, which your IDE should pickup automatically.
If not please use the sun coding convention. Please do not use tabs at all!
Try to change only parts your feature or bugfix requires.
MIT. Please see LICENSE.