c#winform中zedgraph控件的使用(含dll,demo以及文档)

Step1、去sourceforge下载dll、demo,文档;
Step2、引用dll,以及命名控件,如下图;
c#winform中zedgraph控件的使用(含dll,demo以及文档)_第1张图片
Step3、将控件添加到工具箱,如下图;
c#winform中zedgraph控件的使用(含dll,demo以及文档)_第2张图片
Step4、使用控件,在form的Load事件中加入如下代码,如下
GraphPane myPane = this.zedGraphControl1.GraphPane;

        double[] x = new double[] { 1, 2, 10, 100 };
        double[] y = new double[] { 1, 10, 100, 60 };
        PointPairList ppl = new PointPairList(x, y);
        myPane.AddCurve("数量", ppl, Color.Red);

        this.zedGraphControl1.AxisChange();
        this.zedGraphControl1.Refresh();

以上效果为下图
c#winform中zedgraph控件的使用(含dll,demo以及文档)_第3张图片

你可能感兴趣的:(c#winform中zedgraph控件的使用(含dll,demo以及文档))