How to hide representative duration at datetime X-axis plot?
Ältere Kommentare anzeigen
How to remove/hide representative duration at datetime X-axis plot under auto-mode condition(XTickLabelMode)?


Akzeptierte Antwort
Weitere Antworten (2)
Ameer Hamza
am 8 Okt. 2020
Bearbeitet: Ameer Hamza
am 8 Okt. 2020
You can do it by running the following statements.
ax = gca;
ax.XTickLabel = ax.XTickLabel;
or
ax = gca;
ax.XTickLabelMode = 'manual';
4 Kommentare
Euigyeong Hong
am 8 Okt. 2020
Ameer Hamza
am 8 Okt. 2020
There does not seem to be a documented way.
Euigyeong Hong
am 8 Okt. 2020
Ameer Hamza
am 8 Okt. 2020
I think for normal visualization, when you need to zoom on the axes, the date might not be an issue. Just turn it off when printing or saving the image.
Seth Furman
am 12 Okt. 2020
Bearbeitet: Seth Furman
am 12 Okt. 2020
If you just want the duration data for the time of day on the x-axis, you can use the timeofday method for datetime.
>> x = datetime('today'):hours(1):datetime('today')+hours(10);
>> y = 0:10;
>> plot(timeofday(x),y)
>> xtickformat('hh:mm')

1 Kommentar
Euigyeong Hong
am 12 Okt. 2020
Bearbeitet: Euigyeong Hong
am 12 Okt. 2020
Kategorien
Mehr zu Graphics Object Properties finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

