使用MATLAB创建以下图表。我希望在窗体中有相同的绘图。
但是,将几个y值绘制为一个x值(在这种情况下为0)并不成功。
我的代码
this.chart3.Series["Series1"].Points.Clear();
this.chart3.Series["Series1"].Points.AddXY(0, doubleValueArray); //length is 1600
this.chart3.Update();
但我收到了错误
Exception was thrown: Series data points do not support values of type
System.Double[] only values of these types can be used: Double, Decimal,
Single, int, long, uint, ulong, String, DateTime, short, ushort.
...我不明白,因为基于documentation,AddXY的第二个参数接受一个双数组。
我是否需要设置其他内容,例如在属性?
感谢您的帮助
答案 0 :(得分:0)
AddXY
函数需要两个数组:
this.chart3.Series["Series1"].Points.AddXY(xArray, yArray);
在xArray中有单个数据点的x值。所以在你的情况下它应该是一个1600个零的数组。
更新:
你必须添加
this.chart3.Series["Series1"].CustomProperties = "IsXAxisQuantitative=True";
否则它将不适用于x = 0轴
我在自己的问题中在该轴上制定了问题:Plotting two y-values for x=0 in a MS Chart control