绘制图表对象中的随机函数

时间:2014-04-02 13:45:32

标签: c# charts plot

我试图在我的图表对象中绘制随机函数。对于初学者,我想在c#中绘制这个函数:

x^2 + 1

这是我的方法

 for (int x = 1; x < 100; x++)
        {
            chart1.Series["Series1"].Points.AddXY(Math.Pow(x, 2)+1);
        }

抛出这种例外:

ArgumentOutOfRangeException
You can only set 1 Y value for this data point.

那么如何迭代这些点呢?根据这个例子,我想用99分绘制该函数。

谢谢。

1 个答案:

答案 0 :(得分:3)

尝试:

chart1.Series["Series1"].Points.AddXY(x, Math.Pow(x, 2)+1);