Change Colors of bar chart
5 views (last 30 days)
Show older comments
Hello,
I got a fig.file which is a bar chart (attached). And I want to change some bar charts to red for example, bar 4, 10 and 15. but i get an error on the 'flat' line.
Unrecognized property 'FaceColor' for class 'matlab.ui.Figure'.
Error in sadadadadas (line 4)
Figure.FaceColor = 'flat';
This is what i got
Variables = [4 10 15] % Want to paint bars 4, 10 and 15
Figure = openfig('R2-Normalized.fig');
hold on
Figure.FaceColor = 'flat';
hold on
% Paint the bars i Want
for j = 1:size(Variables,2)
aux = Variables(j);
Figure.CData(aux,:) = [1 0 0];
end
Thanks for you time!
0 Comments
Answers (1)
dpb
on 4 Jun 2019
Your variable Figure is the handle of the figure, not the handle of the bar object you're trying to manipulate. You'll have to go "handle diving" and retrieve those handles. See findobj documentation.
0 Comments
See Also
Categories
Find more on Bar Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!