Group Abstract Group Abstract

Message Boards Message Boards

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

How can I style bounding 3D boxes?

Posted 1 year ago
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 1 year 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