Question

I have the tick label set for the x-axis already and I also have the label set for the x-axis too. I am seeking a way to put an additional x label to the rightmost of the figure next to the x tick labels, is there any way to do so? Thanks

just like the following figure, the x ticks was added automatically and x label was added by the command xlabel. But I want to add one additional label "add'l" (red) in the figure. But I have many plots and/or subplots and the axes might be different, so I need to add that label with problem instead of manually.

demo

No correct solution

OTHER TIPS

I suggest using a uicontrol that will be carefully placed in the relevant area.

   uicontrol('style','text',....);

If your UI is resizable, be sure to have the same units, i.e. if the text units are Normalized, then the axes units should be Normalized as well.

Check out this example on the MATPLOTLIB gallery page: http://matplotlib.org/examples/pylab_examples/alignment_test.html

It shows adding all kinds of different text to the axis. enter image description here

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top