List default attributes and custom defined plots.
(self)
| 104 | return HoloViewsConverter(self._data, x, y, kind=kind, **params) |
| 105 | |
| 106 | def __dir__(self): |
| 107 | """ |
| 108 | List default attributes and custom defined plots. |
| 109 | """ |
| 110 | dirs = super().__dir__() |
| 111 | return sorted(list(dirs) + list(self._plots)) |
| 112 | |
| 113 | def __getattribute__(self, name): |
| 114 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected