Plotly has a page for Surface Plots (https://plot.ly/python/3d-surface-plots/) with two nice examples, the first uses Figure and Layout to plot. The second just using iplot() with no Layout modification. But the second example demos how to plot multiple surfaces simultaneously. I need both: (i.e. I need to call fig = go.Figure(data=data, layout=layout), as in the first instance (as I need to provide layout settings), however with the data object containing multiple surfaces.
It seems this doesn't work as expected. Any ideas?