How do I turn off the lines that are projected onto the 3 axis planes of the plot when hovering over the data? I haven't been able to figure out which setting is used to switch these off.
library(plotly)
# data
x <- runif(50, 0, 1)
y <- runif(50, 0, 1)
z <- runif(50, 0, 1)
# hide grid
ax <- list(
title = "",
showgrid = FALSE
)
# produce 3d plot
plot_ly(x = ~x, y = ~y, z = ~z, type = 'mesh3d') %>%
layout(scene = list(xaxis = ax, yaxis = ax, zaxis = ax))