更改 zedgraph 窗格背景颜色

发布于 2024-11-28 19:45:59 字数 288 浏览 1 评论 0原文

是否可以更改 zedgraph 窗格的背景颜色(默认为白色)?

我尝试更改 zedgraph 元素的背景颜色,但它没有给出任何可见的结果,背景仍然是白色:

ZedGraphControl.BackColor = System.Drawing.Color.Black;

并且似乎不存在 ColorBackColorZedGraphControl.GraphPane 上的 code> 属性。

Is it possible to change the background color (white by default) of a zedgraph pane?

I tried changing the background color of the zedgraph element, but it doesn't give any visible result, background is still white:

ZedGraphControl.BackColor = System.Drawing.Color.Black;

And there doesn't seem to exist a Color or BackColor property on ZedGraphControl.GraphPane.

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

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

发布评论

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

评论(3

峩卟喜欢 2024-12-05 19:45:59
myChart.GraphPane.Chart.Fill.Color = System.Drawing.Color.Black;
myChart.GraphPane.Chart.Fill.Color = System.Drawing.Color.Black;
瑶笙 2024-12-05 19:45:59

您可以用来

zg.GraphPane.Chart.Fill.Color = SystemColors.ControlText;

更改[仅]图表的背景。
如果您想更改 zedgraph 中除图表之外的背景颜色,请使用

zg.GraphPane.Fill.Color = SystemColors.ControlText;

如果您想更改 zedgraph 中所有内容的背景颜色,请使用两者:

zg.GraphPane.Chart.Fill.Color = SystemColors.ControlText;
zg.GraphPane.Fill.Color = SystemColors.ControlText;

编辑:我知道您已经解决了您的问题,但我这样做了,所以如果有人搜索它,他可以很快解决他的问题:)

You can use

zg.GraphPane.Chart.Fill.Color = SystemColors.ControlText;

to change the background [only] of the chart.
If you want to change the background color the zedgraph except the chart, use

zg.GraphPane.Fill.Color = SystemColors.ControlText;

If you want to change the background color of everything in the zedgraph, use both:

zg.GraphPane.Chart.Fill.Color = SystemColors.ControlText;
zg.GraphPane.Fill.Color = SystemColors.ControlText;

EDIT: I know that you already solved your problem but I made this so if someone searches it, he can solve his problem quickly :)

爱给你人给你 2024-12-05 19:45:59

myChart.GraphPane.Fill.Color = System.Drawing.Color.Black; 将创建以黑色开始的渐变填充。如果您不想使用渐变,则应该使用 -

myChart.GraphPane.Chart.Fill.Brush = new System.Drawing.SolidBrush(Color.Black);

希望这能解决您的问题。

myChart.GraphPane.Fill.Color = System.Drawing.Color.Black; will create a gradient fill started with black color. If you don't want to use gradient you should use -

myChart.GraphPane.Chart.Fill.Brush = new System.Drawing.SolidBrush(Color.Black);

Hope this will solve your problem.

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