在 TChart 中设置线条颜色
如何在运行时更改 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你几乎已经拥有了。只需设置您感兴趣的系列中的颜色即可。
更新:
颜色只是按照蓝色、绿色、红色顺序排列的十六进制常量。预定义列表位于 Graphics.pas 中,但您可以使用您喜欢的任何十六进制值。此行还将第一个系列的颜色设置为蓝色:
如果定义了多个系列,则可以执行以下操作:
You almost have it. Just set the colour in the series you're interested in.
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:
If you have more than one series defined, you can do something like this: