Graphics Previous page   Next Page

Adding Axis Labels to Graphs

In MATLAB, an axis label is a text string aligned with the x-, y-, or z-axis in a graph. Axis labels can help explain the meaning of the units that each axis represents.

To add axis labels to a graph, you can use any of these mechanisms:

Using the Label Options on the Insert Menu

  1. Click the Insert menu and choose the label option that corresponds to the axis you want to label: X Label, Y Label, or Z Label. MATLAB opens a text entry box along the axis or around an existing axis label.

  1. Enter the text of the label, or edit the text of an existing label.
  2. Click anywhere else in the figure background to close the text entry box around the label. If you click on another object in the figure, such as an axes or line, you close the label text entry box but also automatically select the object you clicked.

Using the Property Editor to Add Axis Labels

To add labels to a graph using the Property Editor,

  1. Start plot editing mode by selecting Edit Plot from the figure Tools menu.
  2. Start the Property Editor by double-clicking on the axes in the graph. You can also start the Property Editor by right-clicking on the axes and selecting Properties from the context menu or by selecting Property Editor from the View menu.
  1. The Property Editor displays the set of property panels specific to axes objects.

  1. Select the X Axis, Y Axis, or Z Axis panel, depending on which axis label you want to add. Enter the label text in the text entry box.

Rotating Axis Labels

You can rotate axis labels using the Property Editor:

  1. Start plot editing mode by selecting Edit Plot from the figure Tools menu.
  2. Display the Property Editor by selecting (left-clicking) the axis label you want to rotate. Right-click over the selected text, then choose Properties from the context menu.
  3. Click the Inspector button to display the Property Inspector.

  4. Select the Rotation property text field. A value of 0 degrees orients the label in the horizontal position.
  5. With the left mouse button down on the selected label, drag the text to the desired location and release.

Using Axis-Label Commands

You can add x-, y-, and z-axis labels using the xlabel, ylabel, and zlabel commands. For example, these statements label the axes and add a title.

The labeling commands automatically position the text string appropriately. MATLAB interprets the characters immediately following the backslash (\) as TeX commands. These commands draw symbols such as Greek letters and arrows.

See the text String property for a list of TeX character sequences. See also the texlabel function for converting MATLAB expressions to TeX symbols.

Rotating Axis Labels Using Commands

Axis labels are text objects that you can rotate by specifying a value for the object's Rotation property. The handles of the x-, y-, and z-axis labels are stored in the axes XLabel, YLabel, and ZLabel properties respectively.

Therefore, to rotate the y-axis label so that the text is horizontal:

  1. Get the handle of the text object using the axes YLabel property.
  2. Set the Rotation property to 0.0 degrees.

For example, this statement rotates the text of the y-axis label on the current axes:

Repositioning Axis Labels

You can reposition an axis label by dragging the text.

  1. Start plot editing mode by selecting Edit Plot from the figure Tools menu.
  2. Select the text of the label you want to reposition (handles appear around the text object).
  3. With the left mouse button down on the selected label, drag the text to the desired location and release.

Previous page  Using the title Function Adding Text Annotations to Graphs Next page

© 1994-2005 The MathWorks, Inc.