How to get the facecolor of each bar?

7 visualizaciones (últimos 30 días)
Jelle
Jelle el 1 de Ag. de 2014
Editada: Ben11 el 1 de Ag. de 2014
Dear Sir/Madam,
In my horizontal bar chart MATLAB has given specific colors for each bar. I'd like to use the same colors in another graph. How can I get these facecolors?
Best regards,
Jelle

Respuesta aceptada

Ben11
Ben11 el 1 de Ag. de 2014
Editada: Ben11 el 1 de Ag. de 2014
Use the handles to the bar graph to retrieve its 'FaceColor' property.
Eg:
hbar1 = hbar(data,SomeColor);
Then you can get the color specifications with:
get(hbar1,'FaceColor');
and apply it to another graph:
hbar2 = hbar(data2,get(hbar1,'FaceColor'));

Más respuestas (0)

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by