Determines whether or not the sectors are reordered from largest to smallest. The 'sort' property is a boolean and must be specified as: - A boolean value: True or False Returns ------- bool
(self)
| 937 | |
| 938 | @property |
| 939 | def sort(self): |
| 940 | """ |
| 941 | Determines whether or not the sectors are reordered from |
| 942 | largest to smallest. |
| 943 | |
| 944 | The 'sort' property is a boolean and must be specified as: |
| 945 | - A boolean value: True or False |
| 946 | |
| 947 | Returns |
| 948 | ------- |
| 949 | bool |
| 950 | """ |
| 951 | return self["sort"] |
| 952 | |
| 953 | @sort.setter |
| 954 | def sort(self, val): |
no outgoing calls