MATLAB 蜡烛图句柄

发布于 2024-10-30 03:30:50 字数 190 浏览 4 评论 0原文

当我使用

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

hcndl =

  176.0044
  178.0032
  177.0031

如何使用此句柄来更改图表的背景颜色时。

谢谢

When I use

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

hcndl =

  176.0044
  178.0032
  177.0031

How can I use this handle to change the background color of the chart.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

花之痕靓丽 2024-11-06 03:30:50

我认为您正在寻找 set 函数。 Set 函数接受图窗的句柄并允许您更改图窗的属性。

handle  = candle(dis('3/31/98::4/30/98'));
set(handle,'BackgroundColor','blue');

I think you're looking for the set function. Set function accepts the handle of the figure and allows you to change the properties of the figure.

handle  = candle(dis('3/31/98::4/30/98'));
set(handle,'BackgroundColor','blue');
世俗缘 2024-11-06 03:30:50

您想要修改轴的颜色。 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

You want to modify the color of the axes. candle gives you handles to lines, whose parent are the axes you'd like to modify.

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
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文