Can I change lines from numeric to datetime without deleting them?
Show older comments
I have an already generated plot and I want to change the X data for all lines on the plot to some other data that happens to be datetimes (the original X values were numeric). When I do this, the lines on the primary Y seem to get converted ok, but when I have lines on a right Y, I am getting errors.
This simple script should demonstrate the issue:
% Create a figure
f = figure;
ax = axes(f);
% Initialize the right Y
yyaxis(ax,'right');
% Plot something on the left
yyaxis(ax,'left');
line1 = plot(ax,1:10,1:10);
% Plot something on the right
yyaxis(ax,'right')
line2 = plot(ax,1:10,(1:10).^2);
% Make the left Y active again
yyaxis(ax,'left');
% Change to datetime
% Some new x data
newX = datetime(2022,9,1:10);
% Set the XAxis ruler to be a datetimeruler
ax.XAxis = matlab.graphics.axis.decorator.DatetimeRuler;
drawnow;
line1.XData = newX;
line2.XData = newX;
Line 1 will update as expected, but Line 2 still wants numeric data for some reason. I have already tried setting the XAxis after switching the active Y axis as well and that doesn't seem to change anything.
Is there a better/different way to easily switch between numeric and datetime data for all lines on a plot?
I know I could delete the lines and run plot again, but the real use case has quite a few lines and the size of the data is pretty large so not having to redraw them would be ideal.
9 Comments
Matt Butts
on 21 Sep 2022
Walter Roberson
on 21 Sep 2022
I have not had much luck with overwriting an existing axes with a different kind of ruler.
Adam Danz
on 21 Sep 2022
Matt Butts , your initial solution would work fine with regular axes but yyaxis doesn't play by the same rules. I'm glad I stumbled upon this. In the mean time, your workaround to recreate the lines should work. You could store the YData in a variable and then reassign it to the new lines with datetime x-values. If you need to find the line objects, use findobj(ax,'type','line').
Consider adding an answer below with your workaround!
Bjorn Gustavsson
on 22 Sep 2022
@Adam Danz: would it not be better to store the handles to the plotted lines in some organized fashion rather than looking for lines among everything plotted?
Adam Danz
on 22 Sep 2022
@Bjorn Gustavsson, absolutely storing handles is better than finding them but the OP's question starts, "I have an already generated plot..." so I assume the OP didn't generate the graphics objects and therefore can't store the handles.
Matt Butts
on 22 Sep 2022
Adam Danz
on 22 Sep 2022
@Matt Butts are you generating the lines with numeric xdata and then changing the xdata to datetime? If so, then why not just generate the lines with datetime data to begin with? Why do you need to change the xdata instead of just specifying the desired xdata to begin with?
Matt Butts
on 22 Sep 2022
Adam Danz
on 22 Sep 2022
If the options are mixed classes that require different axes types (e.g., numeric, categorical, datetime, duration), then it's better to just replace the line objects with new ones. Unless you're dealing with 100s of lines, the processing time won't differ noticeably between those two options.
Answers (0)
Categories
Find more on Creating, Deleting, and Querying Graphics Objects 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!