Split Y axis into two with different colors
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Guilherme Salome
am 30 Aug. 2017
Bearbeitet: Guilherme Salome
am 30 Aug. 2017
I am trying to plot two sequences of bars, using the same y-axis. One of the sequences goes on the bottom, the other goes on top (from top to bottom), and the y axis is split into two (half for the bottom bars and half for the top bars). The bottom bars use one color, like green, and the top bars use another color, red, and the y axis uses the respective colors on each half on the axis.
Example:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/166959/image.jpeg)
I have absolutely no idea how to split the y-axis in this way. Could someone please help me?
Thanks for helping! =D
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Jan
am 30 Aug. 2017
Bearbeitet: Jan
am 30 Aug. 2017
Do you mean something like this:
x = rand(1, 8);
axes2 = axes('NextPlot', 'add', 'Visible', 'on', 'YDir', 'normal', 'YLim', [0, 2]);
bar(x, 'g');
axes2 = axes('NextPlot', 'add', 'Visible', 'off', 'YDir', 'reverse', 'YLim', [0, 2]);
bar(x, 'r');
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/178015/image.png)
Or does the question concern the tick marks? This can be included also.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Annotations finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!