Borrar filtros
Borrar filtros

Bar charts with different colors

1 visualización (últimos 30 días)
Rengin
Rengin el 19 de Nov. de 2019
Editada: KALYAN ACHARJYA el 19 de Nov. de 2019
% Dear users, when I run the code I want to get bars in different colors (not one color). Could you please tell me how to do it?
% Thanks in advance!
SC01_LS02_TVSR_112=[0.0127 0.0139 0.0058 0.0112 0.0048 0.0126 0.0037];
bar(SC01_LS02_TVSR_112);

Respuestas (2)

Rik
Rik el 19 de Nov. de 2019
Depending on your release you can set the CData property of every bar, or you will need to create separate bar objects and set the FaceColor property.

KALYAN ACHARJYA
KALYAN ACHARJYA el 19 de Nov. de 2019
Editada: KALYAN ACHARJYA el 19 de Nov. de 2019
One way:
SC01_LS02_TVSR_112=[0.0127 0.0139 0.0058 0.0112 0.0048 0.0126 0.0037];
col=['r','y','b','k','b','k','y']; % Decide color as you want
for i=1:length(SC01_LS02_TVSR_112)
h=bar(i,SC01_LS02_TVSR_112(i));
set(h,'FaceColor',col(i));
hold on;
end

Categorías

Más información sobre Bar Plots 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!

Translated by