Clear Filters
Clear Filters

x and y ticks in pcolor plots

44 views (last 30 days)
Cesium Modern
Cesium Modern on 16 Feb 2023
Commented: Les Beckham on 16 Feb 2023
I have a p-color plot with the 'EdgeColor' property set to none.
This not only eliminates the grid (which I do not want) but removes the x and y-axes ticks.
How can I enable these ticks and show them outside the plot, with the following
set(gca,'TickDir','out')
Below is what I am trying to achieve with the ticks

Accepted Answer

Voss
Voss on 16 Feb 2023
Set the axes property 'Layer' to 'top' in order to get the grid to show up on top of the pcolor surface.
% a pcolor with EdgeColor 'none':
set(pcolor(zeros(100)),'EdgeColor','none')
% set axes properties:
set(gca(), ...
'XGrid','on', ...
'YGrid','on', ...
'Layer','top', ...
'TickDir','out', ...
'TickLength',[0.05 0.05])
  4 Comments
Cesium Modern
Cesium Modern on 16 Feb 2023
Thanks, Les Beckham and Voss. Appreciate the help!
Les Beckham
Les Beckham on 16 Feb 2023
You are quite welcome.

Sign in to comment.

More Answers (0)

Categories

Find more on Geographic Plots in Help Center and File Exchange

Products


Release

R2022b

Community Treasure Hunt

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

Start Hunting!