ZedGraph的在线文档
官网的源代码 http://sourceforge.net/projects/zedgraph/?source=directory
zedgraph的demo在线范例
http://zedgraph.sourceforge.net/samples.html
这里介绍了如何实现动态加载数据,并且提供了demo
http://goorman.free.fr/ZedGraph/zedgraph.org/wiki/index3061.html?title=Display_Dynamic_or_Real-Time_Data
The ZedGraphControl can display dynamic or static data. For dynamic displays, each time you want to add data to a graph, you will need to do the following:
ZedGraph可以显示动态或者静态的数据,对于动态展示,每当你想要把数据加载到graph上的时候,你需要按照以下的步骤来做
1.Find the CurveItem of interest within the GraphPane.CurveList collection
第一步,先找到GraphPane.CurveList 中的相关曲线
2.Access the PointPairList (or other IPointListEdit type) for the CurveItem, and add the new data or modify the existing data as required
第二步,找到曲线中的PointPairList ,然后根据需要加载新数据或者修改已经存在的数据
3.Call ZedGr