Suffix for cell values. The 'suffix' property is a string and must be specified as: - A string - A number that will be converted to a string - A tuple, list, or one-dimensional numpy array of the above Returns ------- str|numpy
(self)
| 220 | |
| 221 | @property |
| 222 | def suffix(self): |
| 223 | """ |
| 224 | Suffix for cell values. |
| 225 | |
| 226 | The 'suffix' property is a string and must be specified as: |
| 227 | - A string |
| 228 | - A number that will be converted to a string |
| 229 | - A tuple, list, or one-dimensional numpy array of the above |
| 230 | |
| 231 | Returns |
| 232 | ------- |
| 233 | str|numpy.ndarray |
| 234 | """ |
| 235 | return self["suffix"] |
| 236 | |
| 237 | @suffix.setter |
| 238 | def suffix(self, val): |