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.
Alloyui diagram builder addon - Canvas Size Issue
When I create a new org.vaadin.diagrambuilder.DiagramBuilder from the plugin https://vaadin.com/directory#!addon/diagram-builder. The cavas does not size or allow scrolling so half the diagram is missing (As seen in screen shot).
The only explicit sizing I am doing in vaadin is the following.
Panel panel = new Panel("Scroll");
this.setContent(panel);
panel.setContent(getDig());
public DiagramBuilder getDig() {
// Initialize our new UI component
DiagramBuilder diagramBuilder = new DiagramBuilder();
…
diagramBuilder.setSizeFull();
return diagramBuilder;
}
Any help would be great, thanks Sam
Hi, Sam,
This forum is not the best place to report problems with addons. Each addon usually has his own author, own github repository and own issue tracker. For DiagramBuilder, see https://github.com/mstahv/diagram-builder/.