No dates in Matlab plot when plotting

Dear Dynare Team,

I hope this message finds you well. I am reaching out to discuss an observation regarding the plot() function as described in the Dynare documentation. It is mentioned that the function "overloads MATLAB/Octave’s plot function for dseries objects. Returns a MATLAB/Octave plot handle, that can be used to modify the properties of the plotted time series. If only one dseries object, A, is passed as argument, then the plot function will put the associated dates on the x-abscissa". However, in practice, when plotting a simple dseries, the x-axis displays the periods numerically (e.g., 1, 2, 3, etc.) rather than showing the specific dates as intended.

I've managed to devise a workaround for this issue and am sharing it here, hoping it might benefit others facing the same problem.

A=dseries([1;2;3],'2020Y','toto');

% This plot doesn't show dates
plot(A)

% Dates for the plot's legend 
DsDates = firstobservedperiod(A):lastobservedperiod(A);
x_Labels= cell(1,length(DsDates));

% Transforms dseries dates into characters
for i = 1:length(DsDates)
    x_Labels{i} = char(DsDates(i));
end

% This one does
figure()
hold on
xticks(1:length(DsDates));
xticklabels(x_Labels);
plot(A)