每个ZedGraphControl有多个图形面板

本文关键字:图形 ZedGraphControl 每个 | 更新日期: 2023-09-27 18:12:01

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

任何帮助,这将是非常感激!

每个ZedGraphControl有多个图形面板

你可以通过ZedGraphControl类的MasterPane-Property添加新的graphpane:

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

ZedGraphControl的GraphPane- property总是访问MasterPane-List中的第一个GraphPane