9

In 3D plots one can eventually hide the whole bounding box by the use of option Boxed -> False. How to remove only a selected part of the wire frame that surrounds the plot?

Öskå
  • 8,587
  • 4
  • 30
  • 49
robson denke
  • 984
  • 6
  • 13

1 Answers1

3

You could use FaceGrids

Graphics3D[Cylinder[],
 Axes -> True, 
 FaceGrids -> {{0, -1, 0}, {-1, 0, 0}},
 Boxed -> False]

enter image description here

eldo
  • 67,911
  • 5
  • 60
  • 168