Reputation: 717
I would like to change the properties of the Data Courses to let him bigger and bold. Besides how is the best way to export the figure with qualiade?
tks
Upvotes: 2
Views: 3835
Reputation: 11
The above answer gave me an error:
Error using hg.hggroup/set
The name 'FontSize' is not an accessible property for an instance of class 'line'.
This worked better for me:
cursorMode = datacursormode(gcf);
dataTipsH = cursorMode.DataCursors;
set(dataTipsH,'FontSize',12)
Upvotes: 1
Reputation: 83187
http://www.mathworks.com/support/solutions/en/data/1-8FU2S5/:
alldatacursors = findall(gcf,'type','hggroup')
set(alldatacursors,'FontSize',20)
set(alldatacursors,'FontName','Times')
Upvotes: 1