The Difference Between Chart and Graph in LabVIEW

By Ralph - Last updated: Sunday, January 31, 2010 - Save & Share - Leave a Comment

We can use chart and graph to display our acquired data or waveforms. In general, they looks alike, but there still is difference between them which we should note in our VI programming.

The difference is:

Chart control has a data buffer which can be used to store some length of history data. Graph control does not have one. And with chart control, you can scroll to the left to view data in the buffer. With graph control, you have to load the old waveform and plot it on the graph by your VI.

So, chart is suitable for online data display, and graph is suitable for offline data analysis.

Related posts:

  1. A Better Way to Access Variables in Complex Programs in LabVIEW In some LabVIEW programs, we need to access the value...
  2. How to Change Combo Box at Run Time in LabVIEW It will be very useful if we can change the...
  3. How to Ignore CR LF ASCII Codes in Serial Receive with LabVIEW In one of my recent LabVIEW projects, my application needs...

Posted in LabVIEW, VI Software • Tags: , , Top Of Page

Write a comment