0

私が使うとき

>> load disney;
>> hcndl = candle(dis('3/31/98::4/30/98'))

hcndl =

  176.0044
  178.0032
  177.0031

このハンドルを使用してチャートの背景色を変更するにはどうすればよいですか?

ありがとう

4

2 に答える 2

3

set 関数を探していると思います。Set 関数は Figure のハンドルを受け取り、Figure のプロパティを変更できるようにします。

handle  = candle(dis('3/31/98::4/30/98'));
set(handle,'BackgroundColor','blue');
于 2011-04-04T10:30:18.960 に答える
1

軸の色を変更したい。candle変更する軸を親とする線のハンドルを提供します。

load disney;
hcndl = candle(dis('3/31/98::4/30/98'));

%# find handle to axes using the first of the three handles
%# note that you could have used any of the three
axH = get(hcndl(1),'Parent');

%# modify axes
set(axH,'Color','k') %# black color
于 2011-04-05T04:10:23.793 に答える