我的问题与现有问题有关:Change zedgraph pane background color
但是,我想更改整个窗格,而不仅仅是图表。到目前为止,我有这个:
答案 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));