ylabel - Label y-axis - MATLAB (original) (raw)

Syntax

Description

ylabel([txt](#buiyzbx-1%5Fsep%5Fshared-txt)) labels the _y_-axis of the current axes or standalone visualization. Reissuing theylabel command causes the new label to replace the old label.

example

ylabel([target](#buiyzbx-1-target),[txt](#buiyzbx-1%5Fsep%5Fshared-txt)) adds the label to the specified target object.

ylabel(___,[Name,Value](#namevaluepairarguments)) modifies the label appearance using one or more name-value pair arguments. For example, 'FontSize',12 sets the font size to 12 points. Specify name-value pair arguments after all other input arguments. Modifying the label appearance is not supported for all types of charts.

example

[t](#buiyzbx-1-t) = ylabel(___)returns the text object used as the _y_-axis label. Use t to make future modifications to the label after it is created.

Examples

collapse all

plot((1:10).^2) ylabel('Population')

Figure contains an axes object. The axes object with ylabel Population contains an object of type line.

figure plot((1:10).^2) ylabel(123)

Figure contains an axes object. The axes object with ylabel 123 contains an object of type line.

MATLAB® displays 123 beside the _y_-axis.

Create a multiline label using a multiline cell array.

figure plot((1:10).^2) ylabel({2010;'Population';'in Years'})

Figure contains an axes object. The axes object with ylabel 2010 Population in Years contains an object of type line.

Use the '^' and '_' characters to include superscripts and subscripts in the axis labels. Use curly braces {} to modify more than one character.

t = linspace(0,1); y = exp(t); plot(t,y) xlabel('t_{seconds}') ylabel('e^t')

Figure contains an axes object. The axes object with xlabel t indexOf seconds baseline, ylabel e toThePowerOf t baseline contains an object of type line.

Use Name,Value pairs to set the font size, font weight, and text color properties of the _y_-axis label.

figure plot((1:10).^2) ylabel('Population','FontSize',12,... 'FontWeight','bold','Color','r')

Figure contains an axes object. The axes object with ylabel Population contains an object of type line.

'FontSize',12 displays the label text in 12-point font. 'FontWeight','bold' makes the text bold. 'Color','r' sets the text color to red.

Starting in R2019b, you can display a tiling of plots using the tiledlayout and nexttile functions. Call the tiledlayout function to create a 2-by-1 tiled chart layout. Call the nexttile function to create the axes objects ax1 and ax2. Plot data into each axes, and create an _y_-axis label for the top plot.

tiledlayout(2,1) ax1 = nexttile; plot((1:10).^2) ylabel(ax1,'Population')

ax2 = nexttile; plot((1:10).^3)

Figure contains 2 axes objects. Axes object 1 with ylabel Population contains an object of type line. Axes object 2 contains an object of type line.

Label the _y_-axis and return the handle to the text object used as the label.

plot((1:10).^2) t = ylabel('Population');

Figure contains an axes object. The axes object with ylabel Population contains an object of type line.

Set the color of the label to red. Use dot notation to set properties.

Figure contains an axes object. The axes object with ylabel Population contains an object of type line.

Since R2023a

You can rotate a _y_-axis label so that it reads from left-to-right by setting the Rotation property of the label to 0 degrees. By default, _y_-axis labels have a Rotation value of 90 degrees. When you rotate a label, its HorizontalAlignment and VerticalAlignment properties automatically change to prevent overlap with the axes.

Create a plot. Then add a _y_-axis label with a rotation angle of 0 degrees.

plot((1:10)) mylabel = ylabel("Population","Rotation",0);

Figure contains an axes object. The axes object with ylabel Population contains an object of type line.

Input Arguments

collapse all

Target for label, specified as one of the following:

If you do not specify the target, then the ylabel function adds the label to the graphics object returned by thegca command.

Note

Standalone visualizations do not support modifying the label appearance, such as the color, or returning the text object as an output argument.

Name-Value Arguments

collapse all

Specify optional pairs of arguments asName1=Value1,...,NameN=ValueN, where Name is the argument name and Value is the corresponding value. Name-value arguments must appear after other arguments, but the order of the pairs does not matter.

Before R2021a, use commas to separate each name and value, and enclose Name in quotes.

Example: 'Color','red','FontSize',12 specifies red, 12-point font.

In addition to the following, you can specify other text object properties using Name,Value pair arguments. See Text Properties.

Font size, specified as a scalar value greater than 0 in point units. One point equals 1/72 inch. To change the font units, use the FontUnits property.

Setting the font size properties for the associated axes also affects the label font size. The label font size updates to equal the axes font size times the label scale factor. The FontSize property of the axes contains the axes font size. The LabelFontSizeMultiplier property of the axes contains the label scale factor. By default, the axes font size is 10 points and the scale factor is 1.1, so the _y_-axis label font size is 11 points.

Data Types: single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64

Text color, specified as an RGB triplet, a hexadecimal color code, a color name, or a short name.

For a custom color, specify an RGB triplet or a hexadecimal color code.

Alternatively, you can specify some common colors by name. This table lists the named color options, the equivalent RGB triplets, and the hexadecimal color codes.

Color Name Short Name RGB Triplet Hexadecimal Color Code Appearance
"red" "r" [1 0 0] "#FF0000" Sample of the color red
"green" "g" [0 1 0] "#00FF00" Sample of the color green
"blue" "b" [0 0 1] "#0000FF" Sample of the color blue
"cyan" "c" [0 1 1] "#00FFFF" Sample of the color cyan
"magenta" "m" [1 0 1] "#FF00FF" Sample of the color magenta
"yellow" "y" [1 1 0] "#FFFF00" Sample of the color yellow
"black" "k" [0 0 0] "#000000" Sample of the color black
"white" "w" [1 1 1] "#FFFFFF" Sample of the color white
"none" Not applicable Not applicable Not applicable No color

This table lists the default color palettes for plots in the light and dark themes.

Palette Palette Colors
"gem" — Light theme default_Before R2025a: Most plots use these colors by default._ Sample of the "gem" color palette
"glow" — Dark theme default Sample of the "glow" color palette

You can get the RGB triplets and hexadecimal color codes for these palettes using the orderedcolors and rgb2hex functions. For example, get the RGB triplets for the "gem" palette and convert them to hexadecimal color codes.

RGB = orderedcolors("gem"); H = rgb2hex(RGB);

Before R2023b: Get the RGB triplets using RGB = get(groot,"FactoryAxesColorOrder").

Before R2024a: Get the hexadecimal color codes using H = compose("#%02X%02X%02X",round(RGB*255)).

Example: 'blue'

Example: [0 0 1]

Example: '#0000FF'

Text orientation, specified as a scalar value in degrees. A rotation value of 0 degrees makes the text horizontal. For vertical text, set this property to 90 or -90. Positive values rotate the text counterclockwise. Negative values rotate the text clockwise.

Data Types: single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64

Output Arguments

collapse all

Text object used as the _y_-axis label. Use t to access and modify properties of the label after its created.

Tips

Version History

Introduced before R2006a

expand all

When you change the Rotation property of the_y_-axis label in a 2-D plot, theHorizontalAlignment and theVerticalAlignment properties of the label automatically change to prevent overlap between the label and the axes.