0

How can I remove three of the edges (of axes) displayed when using ListDensityPlot3D (see image below)? The three edges "obstruct" the view and I would like to remove them, if possible, while retaining the other edges. For example, in

data = Table[x y z, {z, -1, 1, 2/40.}, {y, -1, 1, 2/40.}, {x, -1, 1, 2/40.}];
ListDensityPlot3D[data]

How to remove the edges marked with red arrows?

So far, I see that the Boxed->False option allows to remove all edges, but not specific ones.

enter image description here

David G. Stork
  • 41,180
  • 3
  • 34
  • 96
dpcard
  • 1
  • 1
  • Found relevant details for Boxed at https://mathematica.stackexchange.com/questions/80609/choosing-which-edges-of-the-box-to-show-in-3d-graphics – dpcard Feb 01 '18 at 00:26

1 Answers1

1
data = Table[x y z, 
       {z, -1, 1, 1/20},
       {y, -1, 1, 1/20}, 
       {x, -1, 1, 1/20}];
ListDensityPlot3D[data, 
    Axes -> True,
    Boxed -> False,
    AxesStyle -> Thick,
    AxesEdge -> {{-1, -1}, {-1, 1}, {-1, -1}}]

enter image description here

or

 AxesEdge -> {{1, 1}, {-1, 1}, {1, 1}}

enter image description here

David G. Stork
  • 41,180
  • 3
  • 34
  • 96