ChartDirector 7.1 (.NET Edition)

Realtime Charts (Windows)


NOTE: This section describes Realtime Charts for Windows applications only. For web applications, please refer to Real-Time Charts (Web).

NOTE: For conciseness, some of the following descriptions only mention WinChartViewer. Those descriptions apply to WPFChartViewer as well.

For Windows applications, a realtime chart may be achieved by simply redrawing the chart periodically.

Typically, a data buffer is used to store the data to be displayed in the chart. A data update routine updates the values in the buffer in realtime. A charting routine uses the data in the buffer to create the chart.

If the data update rate is not very fast (eg. once per second), one can simply redraw the chart immediately when the data buffer is updated.

If the data update rate is very fast (eg. 1000 times per second), a better design is to update the data buffer and the chart asynchronously. In this case, the data update routine can still update the data buffer as fast as it needs to. The charting routine updates the chart at a slower rate, such as a few times per second. Essentially, the charting routine is taking a "snapshot" of the data buffer a few times per second and displays them on screen.

To facilitate creation of realtime charts with fast update rate (faster than several times per second), the WinChartViewer control contains built-in rate control features. It ensures there is at least 20ms (configurable using WinChartViewer.UpdateInterval) between two consecutive chart updates. This allows the GUI to remain smooth and responsive even with extremely fast chart update rate.

To use the rate control features of ChartDirector, instead of updating the chart directly, WinChartViewer.updateViewPort may be used to trigger the ViewPortChanged event, and the chart is updated in the event handler. WinChartViewer will ensure there is at least 20ms between two ViewPortChanged events, and will delay the event and merge multiple events into one event if necessary.