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.
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.
[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
plot((1:10).^2) ylabel('Population')
figure plot((1:10).^2) ylabel(123)
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'})
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')
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')
'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)
Label the _y_-axis and return the handle to the text object used as the label.
plot((1:10).^2) t = ylabel('Population');
Set the color of the label to red. Use dot notation to set properties.
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);
Input Arguments
Target for label, specified as one of the following:
- An
Axes
object. - A
TiledChartLayout
object. - A standalone visualization that has a
YLabel
property. For example, you can specify a heatmap chart as the target. - An array of graphics objects from the preceding list. The objects must belong to the same class. To determine the class, use the class function.
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
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.
- An RGB triplet is a three-element row vector whose elements specify the intensities of the red, green, and blue components of the color. The intensities must be in the range
[0,1]
, for example,[0.4 0.6 0.7]
. - A hexadecimal color code is a string scalar or character vector that starts with a hash symbol (
#
) followed by three or six hexadecimal digits, which can range from0
toF
. The values are not case sensitive. Therefore, the color codes"#FF8800"
,"#ff8800"
,"#F80"
, and"#f80"
are equivalent.
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" | ![]() |
"green" | "g" | [0 1 0] | "#00FF00" | ![]() |
"blue" | "b" | [0 0 1] | "#0000FF" | ![]() |
"cyan" | "c" | [0 1 1] | "#00FFFF" | ![]() |
"magenta" | "m" | [1 0 1] | "#FF00FF" | ![]() |
"yellow" | "y" | [1 1 0] | "#FFFF00" | ![]() |
"black" | "k" | [0 0 0] | "#000000" | ![]() |
"white" | "w" | [1 1 1] | "#FFFFFF" | ![]() |
"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._ | ![]() |
"glow" — Dark theme default | ![]() |
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
Text object used as the _y_-axis label. Use t
to access and modify properties of the label after its created.
Tips
- By default, the
Interactions
property containseditInteraction
so the text can be edited by clicking on the text. To disable this interaction, set theInteractions
property of the text object to[]
.
Version History
Introduced before R2006a
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.