Create Custom Data Tips with imagesc

조회 수: 25 (최근 30일)
Tyler Gerhardson
Tyler Gerhardson 2021년 1월 22일
댓글: Tyler Gerhardson 2021년 1월 25일

채택된 답변

Shubham Rawat
Shubham Rawat 2021년 1월 25일
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!
  댓글 수: 1
Tyler Gerhardson
Tyler Gerhardson 2021년 1월 25일
Great, thanks!
Didn't realize I needed to call datatip() prior to. Didn't appear needed for scatter() & plot() which is why I was getting tripped up.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Exploration and Visualization에 대해 자세히 알아보기

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by