mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2024-12-21 13:57:48 +00:00
Center label for node
This commit is contained in:
parent
d2a2c60db1
commit
68a9d1b07c
@ -52,10 +52,25 @@ export class NodesWidget implements Widget {
|
||||
|
||||
selection
|
||||
.select<SVGTextElement>('text.label')
|
||||
.attr('x', (n: Node) => n.label.x - n.width / 2.)
|
||||
.attr('y', (n: Node) => n.label.y - n.height / 2. + 20) // @todo: server computes y in auto way
|
||||
// .attr('y', (n: Node) => n.label.y - n.height / 2. + 10) // @todo: server computes y in auto way
|
||||
.attr('style', (n: Node) => n.label.style)
|
||||
.text((n: Node) => n.label.text);
|
||||
.text((n: Node) => n.label.text)
|
||||
.attr('x', function (this: SVGTextElement, n: Node) {
|
||||
if (n.label.x === null) {
|
||||
// center
|
||||
const bbox = this.getBBox();
|
||||
return -bbox.width / 2.;
|
||||
}
|
||||
return n.label.x - n.width / 2.;
|
||||
})
|
||||
.attr('y', function (this: SVGTextElement, n: Node) {
|
||||
if (n.label.x === null) {
|
||||
// center
|
||||
const bbox = this.getBBox();
|
||||
return - n.height + 20;
|
||||
}
|
||||
return n.label.y - n.height / 2.;
|
||||
});
|
||||
|
||||
selection
|
||||
.select<SVGTextElement>('text.node_point_label')
|
||||
|
Loading…
Reference in New Issue
Block a user