Skip to main content



      Home
Home » Eclipse Projects » Nebula » How to layout an XYGraph with others Figures(I need to layout a XYGraphToolbar and the XYGraph with a Figure complementing the toolbar. The result is an empty Figure.)
How to layout an XYGraph with others Figures [message #1776088] Fri, 10 November 2017 09:59 Go to next message
Eclipse UserFriend
The idea is to extend the XYGraphToolbar with another toolbar, called here "header". Then display the combined toolbar and the XYGraph bellow.

When laying out the three Figures, the result is an empty Figure.

Playing with the constraints, I was able to display approximately the graph, but I was not able to accurately set those constraints. The getPreferedSize() method of the xyGraph is returning a Dimension (0.0, 0.0).

Canvas c = new Canvas(parent, SWT.DOUBLE_BUFFERED);

Figure root = new Figure();

LightweightSystem lws = new LightweightSystem(c);
lws.setContents(root);

XYGraph xyGraph = new XYGraph();
XYGraphToolbar xyGraphToolbar = new XYGraphToolbar(xyGraph, XYGraphFlags.COMBINED_ZOOM);

...

Figure toolbar = new Figure();
ToolbarLayout toolbarLayout = new ToolbarLayout();
toolbar.setLayoutManager(toolbarLayout);

Figure header = createHeader();
toolbar.add(header);
toolbar.add(xyGraphToolbar);

root.add(toolbar);
root.add(xyGraph);

Re: How to layout an XYGraph with others Figures [message #1776414 is a reply to message #1776088] Thu, 16 November 2017 05:00 Go to previous message
Eclipse UserFriend
Hi David,

Please provide a full snippet as small as possible that demonstrates the problem.

Specifically it must have a main method like this one [1].

Cheers,

Wim

[1] http://www.java2s.com/Code/Java/SWT-JFace-Eclipse/Draw2DSample.htm
Previous Topic:Resizable DropDown Box in NatCombo
Next Topic:CSS styling for Nebula Gallery and custom widgets in Eclipse 4.6
Goto Forum:
  


Current Time: Fri May 02 21:52:42 EDT 2025

Powered by FUDForum. Page generated in 0.02741 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top