Create Custom Data Tips with imagesc
11 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Tyler Gerhardson
am 22 Jan. 2021
Kommentiert: Tyler Gerhardson
am 25 Jan. 2021
Is it possible to modify the data tip of a figure generated with imagesc using the .DataTipTemplate property?

0 Kommentare
Akzeptierte Antwort
Shubham Rawat
am 25 Jan. 2021
Hi Tyler,
Yes you can modify the data tip of a figure generated with imagesc using the .DataTipTemplate property.
You may modify the following code to use DataTipTemplate property.
C = [0 2 4 6; 8 10 12 14; 16 18 20 22];
clims = [4 18];
i = imagesc(C,clims); % scaled color image object in variable 'i'
d = datatip(i,2,2); % by this data tip show up in image
% without using the above line it will show up the error.
c = i.DataTipTemplate(); % DataTipTemplate is used as function
c =
DataTipTemplate with properties:
DataTipRows: [1×3 matlab.graphics.datatip.DataTipTextRow]
Interpreter: 'tex'
FontSize: 10
FontAngle: 'normal'
FontName: 'Helvetica'
Hope this Helps!
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Creating, Deleting, and Querying Graphics Objects finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!