File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -93,6 +93,7 @@ function makeRenderer(
9393 this . props . plotlyOptions
9494 ) }
9595 config = { this . props . plotlyConfig }
96+ onUpdate = { this . props . onRendererUpdate }
9697 />
9798 ) ;
9899 }
@@ -105,6 +106,7 @@ function makeRenderer(
105106 Renderer . propTypes = Object . assign ( { } , PivotData . propTypes , {
106107 plotlyOptions : PropTypes . object ,
107108 plotlyConfig : PropTypes . object ,
109+ onRendererUpdate : PropTypes . func ,
108110 } ) ;
109111
110112 return Renderer ;
@@ -152,6 +154,7 @@ function makeScatterRenderer(PlotlyComponent) {
152154 data = { [ data ] }
153155 layout = { Object . assign ( layout , this . props . plotlyOptions ) }
154156 config = { this . props . plotlyConfig }
157+ onUpdate = { this . props . onRendererUpdate }
155158 />
156159 ) ;
157160 }
@@ -164,6 +167,7 @@ function makeScatterRenderer(PlotlyComponent) {
164167 Renderer . propTypes = Object . assign ( { } , PivotData . propTypes , {
165168 plotlyOptions : PropTypes . object ,
166169 plotlyConfig : PropTypes . object ,
170+ onRendererUpdate : PropTypes . func ,
167171 } ) ;
168172
169173 return Renderer ;
You can’t perform that action at this time.
0 commit comments