* Return the figure's _fullLayout object merged with its layout object * * See getFullData documentation for discussion of why the merge is * necessary
()
| 1016 | * necessary |
| 1017 | */ |
| 1018 | getFullLayout() { |
| 1019 | return _.mergeWith( |
| 1020 | {}, |
| 1021 | (<Plotly.PlotlyHTMLElement>this.el)._fullLayout, |
| 1022 | (<Plotly.PlotlyHTMLElement>this.el).layout, |
| 1023 | fullMergeCustomizer |
| 1024 | ); |
| 1025 | } |
| 1026 | |
| 1027 | /** |
| 1028 | * Build Points data structure from data supplied by the plotly_click, |