更改整个zedgraph背景颜色

时间:2014-06-26 18:38:11

标签: c# zedgraph

我的问题与现有问题有关:Change zedgraph pane background color

但是,我想更改整个窗格,而不仅仅是图表。到目前为止,我有这个: enter image description here

1 个答案:

答案 0 :(得分:3)

ZedGraph确实有一些怪癖。

更改图表和窗格的颜色

// This will do the area outside of the graphing area
GraphPane.Fill = new Fill(Color.FromArgb(222, 224, 212));
// This will do the area inside the graphing area
GraphPane.Chart.Fill = new Fill(Color.FromArgb(222, 224, 212));