Balls and Lines 3D Chart

Hi there,
Just wondering if is possible to draw a โ€œBalls and Lines 3Dโ€ chart in plotly ?

thanks a lot :slight_smile:

I think it should be possible, you can just add to your plot the following depending if you want markers (balls?), lines over the x-axis or lines over the y-axis:

p1 %>% add_markers(size=3)
p1 %>% add_paths
p1 %>% add_lines

And you should be able to combine them.
I hope this works