The `data` property is a tuple of the figure's trace objects Returns ------- tuple[BaseTraceType]
(self)
| 967 | # ---- |
| 968 | @property |
| 969 | def data(self): |
| 970 | """ |
| 971 | The `data` property is a tuple of the figure's trace objects |
| 972 | |
| 973 | Returns |
| 974 | ------- |
| 975 | tuple[BaseTraceType] |
| 976 | """ |
| 977 | return self["data"] |
| 978 | |
| 979 | @data.setter |
| 980 | def data(self, new_data): |
nothing calls this directly
no test coverage detected