Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
Vaadin Chart addPointClickListener
Hello all,
I have been trying to use charts addPointClickListener, but I am getting this warning and my method is not executed
Aug 04, 2015 2:05:24 PM com.vaadin.server.communication.ServerRpcHandler parseServerRpcInvocation
WARNING: Ignoring RPC call to com.vaadin.addon.charts.client.ui.ChartServerRpc.onPointClick in connector com.vaadin.addon.charts.Chart(103) as no RPC implementation is registered
chart.addPointClickListener(new PointClickListener() {
@Override
public void onClick(PointClickEvent event) {
DataSeries ds = (DataSeries) event.getSeries();
System.out.println(ds.getName());
}
});