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. How to Change Waveform Charts’ Scales Programmatically In LabVIEW First, disable auto-scaling property of the waveform chart by...
  2. A Note about DAQ Assistant and 200279 Error in LabVIEW Just a few days ago, I created a simple...
  3. Three Ways to Find SubVI in a LabVIEW Project If we change a subVI’s connector after used it a...
  4. Make Artificial Data Dependency in LabVIEW Sometime, we need the data flow in LabVIEW not to...
  5. How to Change Axis Name of Graph Control in LabWindows/CVI We can use the SetCtrlAttribute function to change an Axis...

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

Write a comment