How can i put an edge color on a specific bar?
37 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
yashvin
el 5 de Ag. de 2015
Comentada: yashvin
el 6 de Ag. de 2015
Hi
y = [2 4 3];
b = bar(y);
b(1,2).LineWidth = 2;
b(1,2).EdgeColor = 'red';
I want to change only the second bar edge to red. How can i do it?
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 5 de Ag. de 2015
y = [2 4 3];
b = bar(y);
hold on
h=bar(y(1:2))
set(h,'EdgeColor', 'red','LineWidth', 2);
Más respuestas (0)
Ver también
Categorías
Más información sobre Dialog Boxes 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!