writing the bar chart value
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Lilya
el 13 de Feb. de 2016
Comentada: Lilya
el 13 de Feb. de 2016
Hi all,
the following chart describes the problem in displaying the bar value why does it not appear as a single value for each one?
thank you for help
2 comentarios
Respuesta aceptada
Image Analyst
el 13 de Feb. de 2016
You need to do each label one at a time. Use this:
bar(y,0.4)
ylim([0 1.2])
Labels = {'P', 'T', 'Tx', 'Ty','Txy', 'P and T'};
set(gca, 'XTick', x, 'XTickLabel', Labels);
for k = 1 : length(x)
text(x(k)',y(k)',num2str(y(k)),...
'HorizontalAlignment','center','VerticalAlignment','bottom')
end
grid on;
Más respuestas (0)
Ver también
Categorías
Más información sobre Axis Labels en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!