在 TChart 中设置线条颜色

发布于 2024-08-25 18:56:47 字数 78 浏览 6 评论 0原文

如何在运行时更改 Delphi 中 TChart 中线条的颜色? 的颜色。

例如,我将如何更改Chart1.Series[a]

How can I change the colour of a line in a TChart in Delphi at run time? For example, how would I change the colour of:

Chart1.Series[a].

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

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

发布评论

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

评论(1

舞袖。长 2024-09-01 18:56:47

你几乎已经拥有了。只需设置您感兴趣的系列中的颜色即可。

  Chart1.Series[0].Color := clBlue;

更新:

颜色只是按照蓝色、绿色、红色顺序排列的十六进制常量。预定义列表位于 Graphics.pas 中,但您可以使用您喜欢的任何十六进制值。此行还将第一个系列的颜色设置为蓝色:

  Chart1.Series[0].Color := $FF0000;

如果定义了多个系列,则可以执行以下操作:

  Chart1.Series[0].Color := clGreen;
  Chart1.Series[1].Color := clYellow;

You almost have it. Just set the colour in the series you're interested in.

  Chart1.Series[0].Color := clBlue;

Update:

Colors are just hex constants in Blue, Green, Red order. The predefined list is in Graphics.pas, but you can use any hex value you like. This line also sets the color of the first series to blue:

  Chart1.Series[0].Color := $FF0000;

If you have more than one series defined, you can do something like this:

  Chart1.Series[0].Color := clGreen;
  Chart1.Series[1].Color := clYellow;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文