Show hover information (open, close, high, low) in separate labels, rather than a single unified label. Default: False. When set to True, `hovertemplate` is ignored. The 'split' property is a boolean and must be specified as: - A boolean value: True or Fal
(self)
| 231 | |
| 232 | @property |
| 233 | def split(self): |
| 234 | """ |
| 235 | Show hover information (open, close, high, low) in separate |
| 236 | labels, rather than a single unified label. Default: False. |
| 237 | When set to True, `hovertemplate` is ignored. |
| 238 | |
| 239 | The 'split' property is a boolean and must be specified as: |
| 240 | - A boolean value: True or False |
| 241 | |
| 242 | Returns |
| 243 | ------- |
| 244 | bool |
| 245 | """ |
| 246 | return self["split"] |
| 247 | |
| 248 | @split.setter |
| 249 | def split(self, val): |
no outgoing calls