Mirror bar chart: 2 bar charts, 2 y axes, 1 x axis. Is it possible?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi all!
I want to get this mirror bar chart. Tried everything but nothing works.
Any idea?
6 Commenti
VBBV
il 2 Ott 2020
%if true
% code
% end
a = (1:10)';
b = rand(10, 1);
c = rand(10, 1)*0.75;
figure
h1 = axes
bar(a,b);set(h1,'Ydir','normal'); hold(h1,'on')
h2 = gca
bar(a,-c)
set(h2, 'Ydir', 'reverse')
axis([0 10 -1 1])
Risposte (1)
Vedere anche
Categorie
Scopri di più su Annotations in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!