* Return the figure's _fullData array merged with its data array * * The merge ensures that for any properties that el._fullData and * el.data have in common, we return the version from el.data * * Named colorscales are one example of why this is needed. The el.data * array will ho
()
| 1001 | * |
| 1002 | */ |
| 1003 | getFullData() { |
| 1004 | return _.mergeWith( |
| 1005 | {}, |
| 1006 | (<Plotly.PlotlyHTMLElement>this.el)._fullData, |
| 1007 | (<Plotly.PlotlyHTMLElement>this.el).data, |
| 1008 | fullMergeCustomizer |
| 1009 | ); |
| 1010 | } |
| 1011 | |
| 1012 | /** |
| 1013 | * Return the figure's _fullLayout object merged with its layout object |