Store rotation for labels

pull/638/head
Julien Duponchelle 8 years ago
parent 818174824b
commit 71d4c0a13a
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

@ -68,8 +68,9 @@ class Node:
self._label = {
"y": -25,
"text": "",
"style": "",
"x": -17
"style": "font-size: 10;font-familly: Verdana",
"x": -17,
"rotation": 0
}
# Update node properties with additional elements
for prop in kwargs:

@ -31,6 +31,10 @@ LABEL_OBJECT_SCHEMA = {
"description": "Relative Y position of the label",
"type": "integer"
},
"rotation": {
"description": "Rotation of the label",
"type": "integer"
},
},
"required": [
"text",

Loading…
Cancel
Save