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.

TUTORIALVaadin lets you build secure, UX-first PWAs entirely in Java.
Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
Calling javascript synchronously by Enver Haase, 2 weeks ago
How to impliment Configure icon in a Chart
Hello,
How can i impliment a configure icon in a Chart like in Quicktickets demo?
Last updated on
Hi,
you can check out the full source code of the Quicktickets demo on github.
regards
Johannes
Last updated on
This icon is not a part a chart. It's implemented with Vaadin menubar:
MenuBar tools = new MenuBar();
MenuItem root = tools.addItem("", FontAwesome.COG, null);
root.addItem("Configure", new Command() {
@Override
public void menuSelected(final MenuItem selectedItem) {
Notification.show("Not implemented in this demo");
}
});
Last updated on
You cannot reply to this thread.