每个ZedGraphControl多个图形窗格?

时间:2011-10-19 21:57:31

标签: c# zedgraph

是否可以在一个zedGraphControl中放置多个图形窗格?所以每个zedGraphControl在一个控件中似乎只有一个图表。我希望能够在特定的zedGraphControl中添加多个图表(如果可能的话)。

非常感谢任何帮助!

1 个答案:

答案 0 :(得分:1)

您可以通过GraphPanes - ZedGraphControl类的属性添加新的MasterPane

GraphPane newPane = new GraphPane();
zedGraphControl.MasterPane.Add(newPane);

ZedGraphControl的GraphPane-Property始终访问MasterPane-List中的第一个GraphPane。