Group Abstract Group Abstract

Message Boards Message Boards

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

How to move axes labels to the left and bottom in a Mathematica Plot

Posted 25 days ago
POSTED BY: Wen Dao
2 Replies
Posted 23 days ago

Here is a horrible way to do almost what you want. (Gianluca Gorni's way is the way to go.)

Labeled[Plot[x^2, {x, -3, 3}, AxesStyle -> Arrowheads@0.035],
 {"x", "y" <> "      "}, {{Bottom, Right}, {Top, Center}}]

![Plot with placed axis labels][1]

POSTED BY: Jim Baldwin

The only workaround that I know about is to place the labels manually:

Plot[x^2, {x, -3, 3}, Epilog -> {Text["x", Scaled[{1, 0}], {2, -1}]}, 
 AxesStyle -> Arrowheads@0.035]
POSTED BY: Gianluca Gorni
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard