datefig: figure handle class with automatically readjusting date ticks

Handle class object that automatically resets date ticks after resize, zoom or pan.
490 Downloads
Updated 29 Jul 2011

View License

The MATLAB command datetick('x') will not automatically update date ticks if a figure is resized, zoomed or panned. datefig is a class definition that creates a MATLAB figure with ResizeFcn, zoom and pan callbacks that call datetick('x','keeplimits') for all axes with plots in a figure.

It can work with any plotting function, but will not show the date ticks until the figure is resized or the axes are zoomed/panned the first time. I am sure there is an axes-creation callback, but I could not find it easily. I will try to add it in a future version. Since it uses the MATLAB function datetick, it will not make sense unless the abscissa is a MATLAB serial date number.

There are overloaded plot, scatter and plotyy functions that put date ticks on the x-axis. If a datefig class object if specified as the first object, then it will plot in that figure, otherwise it will create a datefig object. The datefig class object is an optional second output. The overloaded methods are similar to the MATLAB functions. However, I'm not sure what it will do with AX as an argument. Also if the xdata is not a MATLAB serial date number then it will probably output garbage on the x-axis.

Example:
h = datefig;
subplot(2,1,1);
datefig.plot(h,datenum('1/1/2011'):datenum('12/31/2011'),1:365,'or',datenum('1/1/2011'):datenum('12/31/2011'),3650:-10:10,'-b');
subplot(2,1,2);
datefig.plotyy(h,datenum('1/1/2011'):datenum('12/31/2011'),1:365,datenum('1/1/2011'):datenum('12/31/2011'),3650:-10:10);

This is more generic alternate to using the MATLAB builtin timeseries class.

Cite As

Mark Mikofski (2024). datefig: figure handle class with automatically readjusting date ticks (https://www.mathworks.com/matlabcentral/fileexchange/32359-datefig-figure-handle-class-with-automatically-readjusting-date-ticks), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R2011a
Compatible with any release
Platform Compatibility
Windows macOS Linux

Community Treasure Hunt

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

Start Hunting!
Version Published Release Notes
1.1.0.0

fix plot inputs, add overloaded method for scatter, add overloaded method for plotyy, fix errors with zoom/pan

1.0.0.0