How to remove period stamp in datetime plot ?
Show older comments
How do I remove the period stamp when a datetime vector is plotted ?
Example code:
close all
t=datetime('now'):hours(1):(datetime('now')+days(7));
P=1:(size(t,2));
plot(t,P)
xtickformat('eee HH:mm' )
ax = gca;
ax.XTick = t(1):days(1):t(end);
Plot with period shown in lower right corner, indicated by the red arrow.

Accepted Answer
More Answers (2)
This was a side subject of a thread some time back with the need to combine durations with times at which the event durations occurred to build a 2D representation of events in time over a period of some years...I went off and looked for it but never could find it to refer to and didn't remember the "how" solved the issue.
Messing with the properties of the DateTimeRuler and even looking at undocumented/hidden properties, there appears that TMW left no way for the user to modify this as there (sorta') is with the Exponent property for the NumericRuler; there's no equivalent and while the property is in the object it has no effect on datetime axes...so, I didn't have any real Answer to give...
But, it just came to me that if one manually wrote the tick labels, perhaps the internal logic would be overwritten and, as the above shows, it's so...
There's a little more direct way to achieve the result, however, if one is satisfied with the ticks as is...
hAx=gca; % get the axes handle
hAx.XTickLabel=hAx.XTickLabel; % overwrite the existing tick labels with present values
has the effect of "turning off" the common string the inbuilt logic uses.
One could, it seems, build this into a callback function for cases where one changes limits or the like.
Why TMW seems to think "Mama knows best!" on these niceties that nobody would ever think their chosen default display formats aren't always going to be that wanted is frustrating to have to find these workarounds. While they're kinda' entertaining exercises for Answers, it's a real productivity-killer for the actual end-user.
Abby Skofield
on 20 Sep 2023
Edited: Adam Danz
on 18 Oct 2023
Starting in R2023b, you can use the xsecondarylabel function to toggle the visiblity of the secondary label off.
t=datetime('now'):hours(1):(datetime('now')+days(7));
P=1:(size(t,2));
ax = axes;
plot(t,P)
xtickformat('eee HH:mm' )
ax.XTick = t(1):days(1):t(end);
xsecondarylabel('Visible','off')
You can also use these new functions to add custom secondary labels:
ysecondarylabel('USD, millions')
For more info and demos on this topic, see the Graphics and App Building blog article below
Categories
Find more on Axis Labels in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
