create a figure with box on and x-ytick off

7 views (last 30 days)
Hello i would like to create a graph with box on but i 'd like to remove the x-ticks from upper x-axis and y-ticks from right y-axis. Unfortunatelly i haven't found how i could "get" the properties of each individual axis (right y-axis, left y-axis, bottom x-axis, upper x-axis) and set x-yticks off. I would appreciate any suggestion/help on how i could implement it.

Accepted Answer

Walter Roberson
Walter Roberson on 28 Dec 2011
There are no independent left/right or top/bottom properties. Instead, the axis XAxisLocation property can be 'top' or 'bottom' and YAxisLocation can be 'left' or 'right'
  5 Comments
Walter Roberson
Walter Roberson on 29 Dec 2011
The first thread leads to Paul's plt which is more flexible -- and can be edited.
Yes, that second one is the very one I was thinking of but could not find.
I think in your case you would find it much easier to turn ticks off on the axis, and then draw them in place where you want them. You would have to text() the labels in to place. Check plt first in case it can already handle no ticks on some side. (If it does not already, and Paul is still around, it sound to me like the sort of improvement he might be interested in.)
Kostas
Kostas on 29 Dec 2011
Thx, i 'll ckeck plt too. Reading your earlier post i thought to turn box off and manually draw 2 lines like x top axis and y right, i think someone could follow a way like getting minimum and maximum values of x and y, and plot 1 vertical and 1 horizontal line with same colour and line width of axes. Anyway, thanks again.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!