Message Boards Message Boards

0
|
221 Views
|
2 Replies
|
3 Total Likes
View groups...
Share
Share this post:

How can I style bounding 3D boxes?

Posted 14 days ago

Hello,

I am looking for an option that specifies the edges of the bounding box and axes to be drawn similar to the following graph. enter image description here

I tried:

Plot3D[x^2+y^2, {x, -2, 2}, {y, -2,2},   AxesEdge -> Automatic, Boxed->False]

but it does not work.

enter image description here

Any help would be greatly appreciated. Thank you!

POSTED BY: S. Bwu
2 Replies

There is a built-in plot theme:

(*First@*)Plot3D[x^2 + y^2, {x, -2, 2}, {y, -2, 2}, PlotTheme -> "Detailed"]

enter image description here

Uncomment the First@ if you want to remove the plot legend.

POSTED BY: Michael Rogers
Posted 14 days ago

Here is a start

Plot3D[
 x^2 + y^2, {x, -2, 2}, {y, -2, 2},
 Boxed -> False,
 FaceGrids -> {{0, 0, -1}, {-1, 0, 0}, {0, 1, 0}},
 FaceGridsStyle -> Directive[Thick, Black, Dotted],
 PlotRangePadding -> None,
 AxesStyle -> Thick]

enter image description here

POSTED BY: Eric Rimbey
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard

Group Abstract Group Abstract