Unable to update data tip using custom update function

53 visualizzazioni (ultimi 30 giorni)
Hi,
I have written a code to have a data tip with higher resolution. Please find the sample below:
% Get Screensize
scrsz = get(groot,'ScreenSize');
% Create a figure
fh =figure('Position',[10 10 scrsz(3)/1.1 scrsz(4)/1.1]);
plot(rand(1,100))
DataCursorMode1 = datacursormode(fh);
% Call the custom update function
set(DataCursorMode1,'Enable','on','UpdateFcn',@displayCoordinates)
% Save the Matlab figure
savefig(fh,[Path '.fig']);
% Close the figure
close (fh);
The custom update function is shown below:
function txt = displayCoordinates(~, info)
txt = {sprintf('X: %.5f', info.Position(1)), sprintf('Y: %.5f', info.Position(2))};
end
The Matlab figure is being saved in a shared drive. When i open it in my computer the data tip is shown as expected(with higher resolution).
But when somebody tries to open it in a different computer(with the same Matlab version 2018a). The data tip doesn't work anymore. It gives the following error on the figure:
Unable to update data tip using custom update function
I don't understand what is going wrong here. Does anybody have any clue? Appreciate your time and help.
  3 Commenti
Melwin Thomas
Melwin Thomas il 24 Giu 2020
Hi Geoff,
Thank you for your response.
I thought the same and I shared it with them. And they have the displayCoordinates function in the same directory as mine. Still no luck.
Fangjun Jiang
Fangjun Jiang il 24 Giu 2020
I was able to duplicate the problem. Using your script, the figure was created and saved. The data tip behaved as expected.
Close MATLAB. Open the saved .fig, it shows "unable to update data tip using custom update function". Add displayCoordinates.m function into the path. Still the same problem.
Looking for something that saves the custom update function with the figure, if even possible.

Accedi per commentare.

Risposta accettata

Fangjun Jiang
Fangjun Jiang il 24 Giu 2020
It must be related to where the custom update function comes from when the figure is saved.
  1. I created and saved the figure first with displayCoordinates() as a local function. Close MATLAB and then open the figure, data tip has error even after displayCoordinates() is added as a function in the path.
  2. I created the displayCoordinates() function as a separate function and .m file first in the path. Then create and save the figure. Close MATLAB and open the figure, data tip shows properly.
  1 Commento
Melwin Thomas
Melwin Thomas il 25 Giu 2020
Hi Fangjun Jiang,
Thank you very much for your response.
That was indeed the issue. The issue is resolved now. Appreciate your help.
Have a nice day.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Interactive Control and Callbacks in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by