Bar graph and "stacked" options.
1 view (last 30 days)
Show older comments
Pietro Fiondella
on 5 Jul 2022
Commented: Pietro Fiondella
on 5 Jul 2022
I would like to obtain a bar graph with olnly some data showed as stacked.
For example consider this script.
A=[1 2 3; 2 5 3; 1 4 3];
bar (A)
I can obtain a also this type of graph with 'stacked' bars
bar(A,'stacked')
I would like to obtain a graph in wich only some data are stacked.
For example the first elements of A should appear "1" as alone bar and "2 ,3" stacked with different coulors. how can i do it?
I tryed this but it dosent work.
bar(A(1,1), A(1,2:3),'stacked')
0 Comments
Accepted Answer
Constantino Carlos Reyes-Aldasoro
on 5 Jul 2022
This is solved easily by adding zeros in the columns that you do not want a stack, e.g.
bar ( [1 2 3;0 2 3;0 0 6]','stacked')
More Answers (0)
See Also
Categories
Find more on Specifying Target for Graphics Output 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!