for (int i = 0; i < intarr.Length; i++)
{
Series series = this.chart1.Series.Add(strarr[i]);
series.Points.Add(intarr[i]);
series.XValueType = ChartValueType.Int32;
}
これは私のコードであり、私は持っています
chart1.Series.Clear();
私が呼び出している関数の上部にあります。初回ラウンド、大丈夫です。ただし、2回目にこのエラーが発生します
A chart element with the name 'NSW' already exists in the 'SeriesCollection'.
この行で
Series series = this.chart1.Series.Add(strarr[i]);
ありがとう