We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53c4770 commit 91c74afCopy full SHA for 91c74af
plotly/basewidget.py
@@ -142,6 +142,11 @@ def __init__(
142
# views of this widget
143
self._view_count = 0
144
145
+ # Initialize widget layout and data for third-party widget integration
146
+ # --------------------------------------------------------------------
147
+ self._widget_layout = deepcopy(self._layout_obj._props)
148
+ self._widget_data = deepcopy(self._data)
149
+
150
def show(self, *args, **kwargs):
151
return self
152
0 commit comments