MCPcopy Index your code
hub / github.com/plotly/plotly.py / getFullData

Method getFullData

js/src/widget.ts:1003–1010  ·  view source on GitHub ↗

* 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

()

Source from the content-addressed store, hash-verified

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

Callers 1

_sendTraceDeltasMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected