Clear Filters
Clear Filters

Data Tips - Labels and Text size

10 views (last 30 days)
Josh McNamara
Josh McNamara on 17 Aug 2020
Commented: Benjamin on 24 Feb 2023
Hi,
Just having a few issues with data tip labels writing over the pevious label name , so in this case both data tips get labelled as 'Rise Time' , when one should be 'Rise Time' and the other 'Steady State Speed'. Also cannot get the font size to change.
Any help would be great thanks.
Regards,
Josh
subplot(2,1,2)
ax = gca;
chart = ax.Children(7);
datatip(chart,0.15,64.21);
chart.DataTipTemplate.DataTipRows(1).Label= 'Steady State Speed';
chart.DataTipTemplate.DataTipRows(1).Value ='';
chart.DataTipTemplate.FontSize=1;
chart.DataTipTemplate.DataTipRows(2).Label= '';
% chart.DataTipTemplate.DataTipRows(2).Value='64';
datatip(chart2,0.0072,63);
chart2.DataTipTemplate.DataTipRows(1).Label= 'Rise Time';
chart2.DataTipTemplate.DataTipRows(1).Value ='';
%chart.DataTipTemplate.FontSize=1;
chart2.DataTipTemplate.DataTipRows(2).Label= '';
%chart.DataTipTemplate.DataTipRows(2).Value='';
  2 Comments
Walter Roberson
Walter Roberson on 18 Aug 2020
I do not see a definition for chart2 ?
Benjamin
Benjamin on 24 Feb 2023
Did you find a solution ? i have the same problem :(.

Sign in to comment.

Answers (0)

Tags

Products


Release

R2020a

Community Treasure Hunt

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

Start Hunting!