Spooky Graphed Data?
53 ビュー (過去 30 日間)
古いコメントを表示
Data tip doesn't match Yaxis or actual data. Actual data is 1073741824.
Can anyone explain this?

0 件のコメント
回答 (2 件)
dpb
2025 年 10 月 31 日 13:52
Longstanding behavior -- the datatip values are rounded to some (as far as I know an unspecified) number of significant digits; probably for cleanliness of display considerations.
0 件のコメント
Fangjun Jiang
2025 年 10 月 31 日 13:57
編集済み: Fangjun Jiang
2025 年 10 月 31 日 14:06
a=plot(1073741820:1073741829);
datatip(a);
c=a.DataTipTemplate;
c.DataTipRows(2).Format
c.DataTipRows(2).Format='%d';
5 件のコメント
Fangjun Jiang
2025 年 11 月 2 日 16:24
Thank you @dpb for digging it up. I tried and saw the "auto" format and then searched for the other format. That is all I did.
dpb
2025 年 11 月 2 日 17:04
編集済み: dpb
2025 年 11 月 4 日 14:16
The real contribution was yours to make me curious about whether the interactive callback used the same ptopertiy and then that led to the discovery it is an undocumented and hidden(*) property of every line object.
(*) The actual property .DataTipRows is hidden such that even <Yair Altman's near magical GETUNDOCUMENTED function> doesn't find it which; having never seen it before, had led me to the erroneeous conclusion long ago that it was implemented as an internal callback from the axes and the two weren't really connected at all. Certainly the documentation doesn't provide any hint.
>> HL=plot(rand(10,1); % generate line handle to poke at...
>> U=getundocumented(HL)
U =
struct with fields:
ALimInclude: on
ALimIncludeMode: 'auto'
ALimInclude_I: on
AlignVertexCentersMode: 'auto'
...
CLimInclude_I: on
ChildrenMode: 'auto'
Children_I: [0×0 GraphicsPlaceholder]
ClippingMode: 'auto'
Clipping_I: on
Color_I: [0 0.447 0.741]
Copyable: 1
CreateFcnMode: 'auto'
CreateFcn_I: ''
CreateFcn_IS: '???'
DataTipTemplate_IS: [0×0 GraphicsPlaceholder]
DatetimeTickFormat: ''
DefaultPropMap_Internal: [0×0 struct]
...
>>
reveals only an empty graphics object placeholder; no hint that the actual set of properties are extant and addressable if one does stumble onto the fact they do belong to the lines on the axes.
参考
カテゴリ
Help Center および File Exchange で Environment and Settings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

