我试图在折线图中显示2行。如果我单独显示它们,它可以正常工作。问题是,当我试图显示它们时,我只能看到一行。 这是我为该系列添加点的代码
for (int row = 0; row < rowCount; row++)
{
output = float.Parse(dataGridView1.Rows[row].Cells[9].Value.ToString())/maxOutput;
float prediction = network.run(input, output)*maxOutput;
dataGridView1.Rows[row].Cells[10].Value = prediction;
chartComparision.Series["Reality"].Points.AddY(output);
chartComparision.Series["Prediction"].Points.AddY(prediction);
}
抱歉,我没有足够的声誉发布图片,this is the link to the image。 谢谢你的帮助!