Chart Auto Scroll (Oscilloscope Effect)

You have a choice of options:

  • You can remove a point from the left for each point you add to the right (after a certain number)

  • You can shift the x-Axis Minimum and Maximum values

  • You can set the chart to zoom&pan and then pan, i.e. move the ScaleView

The first option is simple and will keep the number of DataPoints constant. This may be good or bad, depending on your needs.

The other two will keep the collection of points and only pan in the chart.

Common references:

ChartArea ca = chart.ChartAreas[0];
Series s = chart.Series[0];

Here is code for the 1st option:

s.Points.AddXY(..);
s.Points.RemoveAt(0);
ca.AxisX.Minimum = double.NaN;
ca.AxisX.Maximum = double.NaN;
ca.RecalculateAxesScale();

Here is code for option 2:

int ix = s.Points.AddXY(..);

ca.AxisX.Maximum  = s.Points[ix].XValue;
ca.AxisX.Minimum += s.Points[ix].XValue - s.Points[ix-1].XValue;
ca.RecalculateAxesScale();

Here is code for option 3:

int ix = s.Points.AddXY(..);
ca.AxisX.Minimum = double.NaN;
ca.AxisX.Maximum = double.NaN;
ca.RecalculateAxesScale();

ca.AxisX.ScaleView.Zoom(s.Points[ix-pointMax ].XValue, s.Points[ix].XValue );

This assumes there are pointMax points already in the series.

All examples assume you have already a few points. Options 1&3 also assume neither Minimum nor Maximum of the x-axis are set, i.e. they are double.NaN.

The last option will let you scroll around the data conveniently.

The 1st one keeps the data points count low but loses all but the last points.

Let’s watch all options at work:

enter image description here

Do note that options 2&3 also assume that you have valid x-values. If you don’t, you need to make the x-axis indexed and use the point index instead of the values.

Leave a Comment