I want to use MSDN charts to represent realtime data i\'m getting from a telnet application. For testing purpose i have added a button to alter the chart manually. I manuall
I do this:
public static void Refresh(this Chart chart) // update changed data { chart.Series[0].Points.AddXY(1, 1); chart.Update(); chart.Series[0].Points.RemoveAt(chart.Series[0].Points.Count-1); }
chart1.Refresh();