c# chart怎么手动添加点

2025-04-15 09:35:36
推荐回答(1个)
回答1:

var newPoint = new DataPoint(0d, 12d);
chart.Series[0].DataPoints.Add(newPoint);