以曲线方式关闭投影线

时间:2018-01-04 19:38:43

标签: r plotly

当将鼠标悬停在数据上时,如何关闭投影到绘图的3轴平面上的线?我无法确定用哪个设置来关闭它们。

plot with projected lines

.property-thumb-info-image img, .pgl-team-item .img-thumbnail-medium img 
{
   /* your code */
   object-fit: cover;
   /* your code */
}

1 个答案:

答案 0 :(得分:0)

可以找到解决方案here

plot_ly(x = ~x, y = ~y, z = ~z, type = 'mesh3d') %>% 
  layout(scene = list(xaxis = list(showspikes=FALSE), 
                      yaxis = list(showspikes=FALSE), 
                      zaxis = list(showspikes=FALSE)))

enter image description here

相关问题