I would like to add date ticks to my colorbars in the same
way as one can to the x and y axes. I tried the following:
h=colorbar('v');
set(get(h,'datetick'),'string','x');
which returns:
??? Error using ==> get
There is no 'datetick' property in the 'colorbar' class.
Does anybody know a work-around? I'm sure I can't be the
only person who wants to plot time as a third dimension.
Many thanks,
Paul
h = colorbar;
datetick(h,'y');
"Paul Dodd" <p.d...@uea.ac.uk> wrote in message <flvb2u$il2$1...@fred.mathworks.com>...