In gmfgraph I created following Polygon with label as child.
Code:
<actualFigure
xsi:type="gmfgraph:Polygon">
<foregroundColor
xsi:type="gmfgraph:RGBColor"
red="220"
green="220"
blue="250"/>
<backgroundColor
xsi:type="gmfgraph:RGBColor"
red="230"
green="230"
blue="255"/>
<template
x="14"
y="2"/>
<template
x="11"
y="11"/>
.
.
.
<children
xsi:type="gmfgraph:Label"
name="NumberValueFigure"
text="<...>">
</children>
Image of current output of the project: current:
Wanted output:
I would like that the label would appear on top of polygon(first label than shape). I tryed to put polygon and label in rectangle and then use the FlowLayout but as the result only label appears.
like this: wanted