Sets the alignment method used to position the nodes along the horizontal axis. The 'align' property is an enumeration that may be specified as: - One of the following enumeration values: ['justify', 'left', 'right', 'center'] Returns
(self)
| 33 | |
| 34 | @property |
| 35 | def align(self): |
| 36 | """ |
| 37 | Sets the alignment method used to position the nodes along the |
| 38 | horizontal axis. |
| 39 | |
| 40 | The 'align' property is an enumeration that may be specified as: |
| 41 | - One of the following enumeration values: |
| 42 | ['justify', 'left', 'right', 'center'] |
| 43 | |
| 44 | Returns |
| 45 | ------- |
| 46 | Any |
| 47 | """ |
| 48 | return self["align"] |
| 49 | |
| 50 | @align.setter |
| 51 | def align(self, val): |