You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I try to use panel 3d plotly surface when I give x,y axes parameter in 3d surface as surface =go.Surface(x=xutm , y=yutm ,z=z,colorscale='Earth')pn.panel(plotly_layout).servable() gives this error :
ColumnDataSource's columns must be of the same length. Current lengths: ('x', 78), ('y', 49), ('z', 65) when I omit x,y axes, it works.
Regards
The text was updated successfully, but these errors were encountered:
That's a faulty assumption I made when I implemented the plotly model, that requirement makes sense for columnar data but for 2D or 3D data it doesn't apply. Will have to refine the Plotly model a bit.
Hi,
I try to use panel 3d plotly surface when I give x,y axes parameter in 3d surface as
surface =go.Surface(x=xutm , y=yutm ,z=z,colorscale='Earth')
pn.panel(plotly_layout).servable()
gives this error :ColumnDataSource's columns must be of the same length. Current lengths: ('x', 78), ('y', 49), ('z', 65) when I omit x,y axes, it works.
Regards
The text was updated successfully, but these errors were encountered: