Determines whether or not contour lines about the y dimension are highlighted on hover. The 'highlight' property is a boolean and must be specified as: - A boolean value: True or False Returns ------- bool
(self)
| 65 | |
| 66 | @property |
| 67 | def highlight(self): |
| 68 | """ |
| 69 | Determines whether or not contour lines about the y dimension |
| 70 | are highlighted on hover. |
| 71 | |
| 72 | The 'highlight' property is a boolean and must be specified as: |
| 73 | - A boolean value: True or False |
| 74 | |
| 75 | Returns |
| 76 | ------- |
| 77 | bool |
| 78 | """ |
| 79 | return self["highlight"] |
| 80 | |
| 81 | @highlight.setter |
| 82 | def highlight(self, val): |
no outgoing calls
no test coverage detected