The minimum value visible on this axis. The maximum is determined by the sum minus the minimum values of the other two axes. The full view corresponds to all the minima set to zero. The 'min' property is a number and may be specified as: - An int or float
(self)
| 324 | |
| 325 | @property |
| 326 | def min(self): |
| 327 | """ |
| 328 | The minimum value visible on this axis. The maximum is |
| 329 | determined by the sum minus the minimum values of the other two |
| 330 | axes. The full view corresponds to all the minima set to zero. |
| 331 | |
| 332 | The 'min' property is a number and may be specified as: |
| 333 | - An int or float in the interval [0, inf] |
| 334 | |
| 335 | Returns |
| 336 | ------- |
| 337 | int|float |
| 338 | """ |
| 339 | return self["min"] |
| 340 | |
| 341 | @min.setter |
| 342 | def min(self, val): |
no outgoing calls