Can I change lines from numeric to datetime without deleting them?
이전 댓글 표시
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
Matt Butts
2022년 9월 21일
Walter Roberson
2022년 9월 21일
I have not had much luck with overwriting an existing axes with a different kind of ruler.
Adam Danz
2022년 9월 21일
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
2022년 9월 22일
@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
2022년 9월 22일
@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
2022년 9월 22일
Adam Danz
2022년 9월 22일
@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
2022년 9월 22일
Adam Danz
2022년 9월 22일
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.
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Creating, Deleting, and Querying Graphics Objects에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!