how to add percentage symbol (%) in a label

143 visualizaciones (últimos 30 días)
alessandro marino
alessandro marino el 15 de Oct. de 2023
Comentada: Star Strider el 15 de Oct. de 2023
Hi,
I would like to plot a bargraph and add labels to the bars, showing a numerical value followed by the percentage symbol (%). Please find below a MWE:
x=table{:,"Xvalues"};
y=table{:,"Yvalues"};
barGraph=bar(x,y,0.9);
xtips1=barGraph(1).XEndPoints;
ytips1=barGraph(1).YEndPoints;
labels1=sprintfc('%.2f',table.labels);
text(xtips1,ytips1,labels1,'Rotation',45);
I know I can do that by defining 'labels1' as a string and then adding ' + '%' ' into the text command, as in:
x=table{:,"Xvalues"};
y=table{:,"Yvalues"};
barGraph=bar(x,y,0.9);
xtips1=barGraph(1).XEndPoints;
ytips1=barGraph(1).YEndPoints;
labels1=string(table.labels);
text(xtips1,ytips1,labels1 + '%','Rotation',45);
in this case, though, I cannot cut the values in 'labels1' after the second decimanl digit.
Thanks
  2 comentarios
Matt J
Matt J el 15 de Oct. de 2023
We do not have your "table" variable and so cannot run the example. Also, "table" is inadvisable as a name for the varable, since it is also the name of a command.
alessandro marino
alessandro marino el 15 de Oct. de 2023
Thanks for pointing this out, I used "table" as a variable only to show exactly how I had structured my code. I meant it to represent a generic table containing values. I wanted to make sure the error did not come from a wrong way of extracting the values. Sorry about it!

Iniciar sesión para comentar.

Respuesta aceptada

Star Strider
Star Strider el 15 de Oct. de 2023
The approach seems to work here using synthetic data —
% x=table{:,"Xvalues"};
% y=table{:,"Yvalues"};
x = 1:5;
y = round(rand(1,5)*100);
barGraph=bar(x,y,0.9);
labels = y;
xtips1=barGraph(1).XEndPoints;
ytips1=barGraph(1).YEndPoints;
% labels1=string(table.labels);
labels1 = string(labels);
text(xtips1,ytips1,labels1 + '%','Rotation',45);
If this does not work with your data, you will need to supply it.
.
  2 comentarios
alessandro marino
alessandro marino el 15 de Oct. de 2023
Thank you @Star Strider, nice and quick solution!
Star Strider
Star Strider el 15 de Oct. de 2023
As always, my pleasure!
Thank you!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Productos


Versión

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by