2

我想改变数据课程的属性,让他更大更大胆。除了如何用 qualiade 导出图形的最佳方法是什么?

tks

在此处输入图像描述

4

2 回答 2

1

上面的答案给了我一个错误:

    Error using hg.hggroup/set
    The name 'FontSize' is not an accessible property for an instance of class 'line'.

这对我来说效果更好:

    cursorMode = datacursormode(gcf);
    dataTipsH = cursorMode.DataCursors;
    set(dataTipsH,'FontSize',12)
于 2014-06-21T12:42:24.323 回答
1

http://www.mathworks.com/support/solutions/en/data/1-8FU2S5/

alldatacursors = findall(gcf,'type','hggroup')
set(alldatacursors,'FontSize',20)
set(alldatacursors,'FontName','Times')
于 2013-10-25T17:10:51.017 回答