The nodes of the Sankey plot. The 'node' property is an instance of Node that may be specified as: - An instance of :class:`plotly.graph_objs.sankey.Node` - A dict of string/value properties that will be passed to the Node constructor
(self)
| 377 | |
| 378 | @property |
| 379 | def node(self): |
| 380 | """ |
| 381 | The nodes of the Sankey plot. |
| 382 | |
| 383 | The 'node' property is an instance of Node |
| 384 | that may be specified as: |
| 385 | - An instance of :class:`plotly.graph_objs.sankey.Node` |
| 386 | - A dict of string/value properties that will be passed |
| 387 | to the Node constructor |
| 388 | |
| 389 | Returns |
| 390 | ------- |
| 391 | plotly.graph_objs.sankey.Node |
| 392 | """ |
| 393 | return self["node"] |
| 394 | |
| 395 | @node.setter |
| 396 | def node(self, val): |
no outgoing calls
no test coverage detected