<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to plot data using PlotXvsY method from the AxCWGraph object? in Measurement Studio for .NET Languages</title>
    <link>https://ni.lithium.com/t5/Measurement-Studio-for-NET/How-to-plot-data-using-PlotXvsY-method-from-the-AxCWGraph-object/m-p/241101#M1925</link>
    <description>&lt;DIV&gt;&lt;/DIV&gt;
&lt;P&gt;If you are going to create an application using C++, .NET Windows Forms, and Measurement Studio, you have two choices to plot a 1D array of floats: 
&lt;/P&gt;&lt;P&gt;
&lt;OL&gt;
&lt;LI&gt;Use an interop wrapper around the CWGraph control and plot an array of .NET data values via the PlotY method. You asked about PlotXvsY, but this method is for when you're specifying both the array of x values and the array of y values. Since you have 1 array, you should use PlotY instead of PlotXvsY.&lt;/LI&gt;
&lt;LI&gt;Convert the array of float values to an array of double values, then use the native Measurement Studio .NET Windows Forms WaveformGraph control to plot the array via the PlotY method.&lt;/LI&gt;&lt;/OL&gt;
&lt;/P&gt;&lt;P&gt;Here is an example of using AxCWGraph.PlotXY: &lt;/P&gt;&lt;PRE&gt;float values __gc[] = { 1.0, 2.0, 1.0, 2.0, 1.0 } ;
axCWGraph1-&amp;gt;PlotY(values);
&lt;/PRE&gt;
&lt;P&gt;Here is an equivalent example using WaveformGraph.PlotY: &lt;/P&gt;&lt;PRE&gt;float values __gc[] = { 1.0, 2.0, 1.0, 2.0, 1.0 } ;
double convertedValues __gc[] = (double __gc[])DataConverter::Convert(values, __typeof(double __gc[]));
waveformGraph1-&amp;gt;PlotY(convertedValues);
&lt;/PRE&gt;
&lt;P&gt;Hope this helps. &lt;/P&gt;
&lt;P&gt;- Elton &lt;/P&gt;</description>
    <pubDate>Wed, 13 Jul 2005 16:55:51 GMT</pubDate>
    <dc:creator>Elton Wells</dc:creator>
    <dc:date>2005-07-13T16:55:51Z</dc:date>
    <item>
      <title>How to plot data using PlotXvsY method from the AxCWGraph object?</title>
      <link>https://ni.lithium.com/t5/Measurement-Studio-for-NET/How-to-plot-data-using-PlotXvsY-method-from-the-AxCWGraph-object/m-p/241052#M1923</link>
      <description>&lt;DIV&gt;Hi,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;I have searched through the tutoriols, knowledge base section, and forums for anything dealing with plotting points using the AxCWGraph object available for measurement studios 7.0 for VC++ .NET.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;So far, I have found nothing on the topic except example code which I can not comprehend (because they use MFC classes, which my current project can not use). The main function I want to use is the PlotXvsY method made available for the class.&lt;/DIV&gt;
&lt;DIV&gt;Apparently the method can take two parameters, x and y values to plot. But it wants of type System::Objects __gc for its parameters.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;I looked at the examples which came with the software, and they all use CNiVectors to pass it in, which I understand belong to MFC classes. I was told I can not currently use the CNi class because my project isnt using MFC. Regardless, I was wondering if you can suggest me a way (hopefully easier to understand) on how to use PlotXvsY. I currently have an 1D array which holds floats and I just want to plot them onto the graph (AxCWGraph object). I hope this is clear enough on what I am trying to ask. I GREATLY appreciate the efforts and any help would be helpful. Thank you.&lt;/DIV&gt;</description>
      <pubDate>Wed, 13 Jul 2005 15:34:56 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Measurement-Studio-for-NET/How-to-plot-data-using-PlotXvsY-method-from-the-AxCWGraph-object/m-p/241052#M1923</guid>
      <dc:creator>chowchow2469</dc:creator>
      <dc:date>2005-07-13T15:34:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to plot data using PlotXvsY method from the AxCWGraph object?</title>
      <link>https://ni.lithium.com/t5/Measurement-Studio-for-NET/How-to-plot-data-using-PlotXvsY-method-from-the-AxCWGraph-object/m-p/241101#M1925</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;
&lt;P&gt;If you are going to create an application using C++, .NET Windows Forms, and Measurement Studio, you have two choices to plot a 1D array of floats: 
&lt;/P&gt;&lt;P&gt;
&lt;OL&gt;
&lt;LI&gt;Use an interop wrapper around the CWGraph control and plot an array of .NET data values via the PlotY method. You asked about PlotXvsY, but this method is for when you're specifying both the array of x values and the array of y values. Since you have 1 array, you should use PlotY instead of PlotXvsY.&lt;/LI&gt;
&lt;LI&gt;Convert the array of float values to an array of double values, then use the native Measurement Studio .NET Windows Forms WaveformGraph control to plot the array via the PlotY method.&lt;/LI&gt;&lt;/OL&gt;
&lt;/P&gt;&lt;P&gt;Here is an example of using AxCWGraph.PlotXY: &lt;/P&gt;&lt;PRE&gt;float values __gc[] = { 1.0, 2.0, 1.0, 2.0, 1.0 } ;
axCWGraph1-&amp;gt;PlotY(values);
&lt;/PRE&gt;
&lt;P&gt;Here is an equivalent example using WaveformGraph.PlotY: &lt;/P&gt;&lt;PRE&gt;float values __gc[] = { 1.0, 2.0, 1.0, 2.0, 1.0 } ;
double convertedValues __gc[] = (double __gc[])DataConverter::Convert(values, __typeof(double __gc[]));
waveformGraph1-&amp;gt;PlotY(convertedValues);
&lt;/PRE&gt;
&lt;P&gt;Hope this helps. &lt;/P&gt;
&lt;P&gt;- Elton &lt;/P&gt;</description>
      <pubDate>Wed, 13 Jul 2005 16:55:51 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Measurement-Studio-for-NET/How-to-plot-data-using-PlotXvsY-method-from-the-AxCWGraph-object/m-p/241101#M1925</guid>
      <dc:creator>Elton Wells</dc:creator>
      <dc:date>2005-07-13T16:55:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to plot data using PlotXvsY method from the AxCWGraph object?</title>
      <link>https://ni.lithium.com/t5/Measurement-Studio-for-NET/How-to-plot-data-using-PlotXvsY-method-from-the-AxCWGraph-object/m-p/241133#M1926</link>
      <description>&lt;DIV&gt;Hi,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Thank you very much Elton. I forgot to mention my 1D array has x,y values respectively. I would jsut re organize it so I can have 2 arrays for x and y respecitively of type double and pass that into PlotXvsY. &lt;/DIV&gt;
&lt;DIV&gt;I am&amp;nbsp;assuming PlotXvsY(double x __gc[], double y __gc[]) works also?&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Thanks!!&lt;/DIV&gt;</description>
      <pubDate>Wed, 13 Jul 2005 17:50:33 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Measurement-Studio-for-NET/How-to-plot-data-using-PlotXvsY-method-from-the-AxCWGraph-object/m-p/241133#M1926</guid>
      <dc:creator>chowchow2469</dc:creator>
      <dc:date>2005-07-13T17:50:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to plot data using PlotXvsY method from the AxCWGraph object?</title>
      <link>https://ni.lithium.com/t5/Measurement-Studio-for-NET/How-to-plot-data-using-PlotXvsY-method-from-the-AxCWGraph-object/m-p/241136#M1927</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;
&lt;P&gt;Yes, that will work.&amp;nbsp; If you want to use the native Measurement Studio .NET UI Windows Forms control, you can use ScatterGraph.PlotXY.&amp;nbsp; Just out of curiosity, is there a reason that you are using an interop wrapper for the CWGraph control rather than using the native Measurement Studio .NET Windows Forms controls?&lt;/P&gt;
&lt;P&gt;- Elton&lt;BR /&gt;&lt;/P&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 13 Jul 2005 17:59:00 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Measurement-Studio-for-NET/How-to-plot-data-using-PlotXvsY-method-from-the-AxCWGraph-object/m-p/241136#M1927</guid>
      <dc:creator>Elton Wells</dc:creator>
      <dc:date>2005-07-13T17:59:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to plot data using PlotXvsY method from the AxCWGraph object?</title>
      <link>https://ni.lithium.com/t5/Measurement-Studio-for-NET/How-to-plot-data-using-PlotXvsY-method-from-the-AxCWGraph-object/m-p/247790#M2023</link>
      <description>&lt;P&gt;Hi Elton,&lt;/P&gt;
&lt;P&gt;I hope you can read this again. How would I access Scattergraph controls in Visual C++.net?&lt;/P&gt;
&lt;P&gt;I current have Measurement Studios 7.0 and only have AxCWGraph class when I create the graph UI.&lt;/P&gt;
&lt;P&gt;I do want to use the PlotXY method, but the prototype for it is PlotXY(Object * __gc, Object* __gc)&lt;/P&gt;
&lt;P&gt;I am assuming Scattergraph is PlotXY(double x, double y), which I want to use.&lt;/P&gt;
&lt;P&gt;Thanks alot!&lt;/P&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 28 Jul 2005 18:53:13 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Measurement-Studio-for-NET/How-to-plot-data-using-PlotXvsY-method-from-the-AxCWGraph-object/m-p/247790#M2023</guid>
      <dc:creator>chowchow2469</dc:creator>
      <dc:date>2005-07-28T18:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to plot data using PlotXvsY method from the AxCWGraph object?</title>
      <link>https://ni.lithium.com/t5/Measurement-Studio-for-NET/How-to-plot-data-using-PlotXvsY-method-from-the-AxCWGraph-object/m-p/247795#M2024</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;&lt;P&gt;
ScatterGraph has PlotXY(double x, double y) and PlotXY(double[], double[]).
Did you install the Measurement Studio .NET libraries when you installed
Measurement Studio?  If so, when you open the Windows Forms designer in a
Managed C++ project, look at the toolbox and you should see a tab for the
Measurement Studio .NET controls.  Open this tab and you will see
ScatterGraph, and then you can drag and drop a ScatterGraph to the form.
&lt;/P&gt;

&lt;P&gt;
- Elton
&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jul 2005 18:57:42 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Measurement-Studio-for-NET/How-to-plot-data-using-PlotXvsY-method-from-the-AxCWGraph-object/m-p/247795#M2024</guid>
      <dc:creator>Elton Wells</dc:creator>
      <dc:date>2005-07-28T18:57:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to plot data using PlotXvsY method from the AxCWGraph object?</title>
      <link>https://ni.lithium.com/t5/Measurement-Studio-for-NET/How-to-plot-data-using-PlotXvsY-method-from-the-AxCWGraph-object/m-p/247796#M2025</link>
      <description>&lt;DIV&gt;Thank you for the prompt response.&lt;/DIV&gt;
&lt;DIV&gt;I probably did not install the measurement studio .NET libraries. But just to make sure. &lt;/DIV&gt;
&lt;DIV&gt;Right now in my toolbox under measurement studio tab, I only see CW UI Objects, i.e. CWSlide, CWknob, CWGraph, etc..&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;So your saying under the measurement studio tab I should see a "scatter graph" object. Sorry I am new to measurement studios. Thanks!&lt;/DIV&gt;</description>
      <pubDate>Thu, 28 Jul 2005 19:03:52 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Measurement-Studio-for-NET/How-to-plot-data-using-PlotXvsY-method-from-the-AxCWGraph-object/m-p/247796#M2025</guid>
      <dc:creator>chowchow2469</dc:creator>
      <dc:date>2005-07-28T19:03:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to plot data using PlotXvsY method from the AxCWGraph object?</title>
      <link>https://ni.lithium.com/t5/Measurement-Studio-for-NET/How-to-plot-data-using-PlotXvsY-method-from-the-AxCWGraph-object/m-p/247797#M2026</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;&lt;P&gt;
There are two toolbox tabs: one for Measurement Studio C++ controls and
another for Measurement Studio .NET controls.  The Measurement Studio C++ tab
has CWGraph, CWSlide, etc.  The Measurement Studio .NET tab has ScatterGraph,
WaveformGraph, etc.  If you do not see the Measurement Studio .NET tab, then
you probably do not have the Measurement Studio .NET libraries installed.  You
can double-check your Measurement Studio installation directory to be sure.
If the Measurement Studio .NET libraries are installed and the toolbox tab is
not appearing, you can create the toolbox tab yourself and add the controls
from the NationalInstruments.UI.WindowsForms.dll assembly in the Measurement
Studio installation directory.
&lt;/P&gt;

&lt;P&gt;
- Elton
&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jul 2005 19:07:05 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Measurement-Studio-for-NET/How-to-plot-data-using-PlotXvsY-method-from-the-AxCWGraph-object/m-p/247797#M2026</guid>
      <dc:creator>Elton Wells</dc:creator>
      <dc:date>2005-07-28T19:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to plot data using PlotXvsY method from the AxCWGraph object?</title>
      <link>https://ni.lithium.com/t5/Measurement-Studio-for-NET/How-to-plot-data-using-PlotXvsY-method-from-the-AxCWGraph-object/m-p/252517#M2105</link>
      <description>&lt;DIV&gt;Hi Elton,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;I added the NationalInstruments.UI.WindowsForms.dll assembly file after installing the .NET libraries. Unless I installed it wrong, I only see the waveform graph object, and not scatter graph. I currently have the Developer Suite 2004, which should include the libraries that contains the Scatter graph object I am assuming. &lt;/DIV&gt;
&lt;DIV&gt;Again, the reason why I want to use Scatter Graph is to use the method PlotXY, and waveform graph does not have any plot methods that are useful, i.e.&amp;nbsp; PlotX, PlotY, PlotXappend, PlotYappend&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;When I added the toolbar manually and add the items for it, I do see the NI UI.WindowsForms.dll assembly file. I chose it and clicked OK, and only the waveform graph object showed up. Any help would be greatly appreciated. Thanks!&lt;/DIV&gt;</description>
      <pubDate>Tue, 09 Aug 2005 22:01:16 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Measurement-Studio-for-NET/How-to-plot-data-using-PlotXvsY-method-from-the-AxCWGraph-object/m-p/252517#M2105</guid>
      <dc:creator>chowchow2469</dc:creator>
      <dc:date>2005-08-09T22:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to plot data using PlotXvsY method from the AxCWGraph object?</title>
      <link>https://ni.lithium.com/t5/Measurement-Studio-for-NET/How-to-plot-data-using-PlotXvsY-method-from-the-AxCWGraph-object/m-p/252519#M2106</link>
      <description>&lt;P&gt;Nevermind, I found out what was wrong. Did not look close enough to find the scatter graph object. Sorry to bother you! thanks!&lt;/P&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 09 Aug 2005 22:06:44 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Measurement-Studio-for-NET/How-to-plot-data-using-PlotXvsY-method-from-the-AxCWGraph-object/m-p/252519#M2106</guid>
      <dc:creator>chowchow2469</dc:creator>
      <dc:date>2005-08-09T22:06:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to plot data using PlotXvsY method from the AxCWGraph object?</title>
      <link>https://ni.lithium.com/t5/Measurement-Studio-for-NET/How-to-plot-data-using-PlotXvsY-method-from-the-AxCWGraph-object/m-p/252524#M2107</link>
      <description>&lt;P&gt;Hi Elton,&lt;/P&gt;
&lt;P&gt;I&amp;nbsp; apologize for asking so many questions, but I really need to figure this one out. It appears that I need to liscence the ScatterGraph object or any ActiveX controls I have. I read up on the help file and it says I just need to re add all my reference files. I did just that , but it still asks that I need to liscence it when I run my program.&lt;/P&gt;
&lt;P&gt;Any Ideas on how to liscence it properly?&lt;/P&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 09 Aug 2005 22:26:46 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Measurement-Studio-for-NET/How-to-plot-data-using-PlotXvsY-method-from-the-AxCWGraph-object/m-p/252524#M2107</guid>
      <dc:creator>chowchow2469</dc:creator>
      <dc:date>2005-08-09T22:26:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to plot data using PlotXvsY method from the AxCWGraph object?</title>
      <link>https://ni.lithium.com/t5/Measurement-Studio-for-NET/How-to-plot-data-using-PlotXvsY-method-from-the-AxCWGraph-object/m-p/252529#M2108</link>
      <description>&lt;DIV&gt;Hi,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;I have found the article regarding to my problem, and fixed it. Again, I apologize for multiple posting, and answering it myself. But this one I can not answer myself.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;I am trying to use plotXY, and my graph is not plotting any data. Here is a test code I am running just to teach myself how to use it.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT color="#0000ff" size="2"&gt;
&lt;P&gt;double&lt;/P&gt;&lt;/FONT&gt;&lt;FONT color="#000000" size="2"&gt; values &lt;/FONT&gt;&lt;FONT color="#0000ff" size="2"&gt;__gc&lt;/FONT&gt;&lt;FONT color="#000000" size="2"&gt;[] = &lt;/FONT&gt;&lt;FONT color="#0000ff" size="2"&gt;new&lt;/FONT&gt;&lt;FONT color="#000000" size="2"&gt; &lt;/FONT&gt;&lt;FONT color="#0000ff" size="2"&gt;double&lt;/FONT&gt;&lt;FONT color="#000000" size="2"&gt; &lt;/FONT&gt;&lt;FONT color="#0000ff" size="2"&gt;__gc&lt;/FONT&gt;&lt;FONT size="2"&gt;&lt;FONT color="#000000"&gt;[6];&lt;/FONT&gt;&lt;/FONT&gt;&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;&lt;FONT color="#000000"&gt;d&lt;/FONT&gt;&lt;FONT color="#0000ff"&gt;ouble&lt;/FONT&gt; values2 &lt;FONT color="#0000ff"&gt;__gc&lt;/FONT&gt;[] = &lt;FONT color="#0000ff"&gt;new&lt;/FONT&gt; &lt;FONT color="#0000ff"&gt;double&lt;/FONT&gt; &lt;FONT color="#0000ff"&gt;__gc&lt;/FONT&gt;[6];&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;&lt;FONT color="#0000ff"&gt;int&lt;/FONT&gt; x;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;&lt;FONT color="#0000ff"&gt;for&lt;/FONT&gt;(x=0; x&amp;lt;6; x++)&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;{&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;values[x] = x+2;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;values2[x] = x+3;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;scatterGraph1-&amp;gt;PlotXY(values[x], values2[x]);&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;}&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;What is wrong with the logic of the above code?&lt;/FONT&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 09 Aug 2005 22:53:45 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Measurement-Studio-for-NET/How-to-plot-data-using-PlotXvsY-method-from-the-AxCWGraph-object/m-p/252529#M2108</guid>
      <dc:creator>chowchow2469</dc:creator>
      <dc:date>2005-08-09T22:53:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to plot data using PlotXvsY method from the AxCWGraph object?</title>
      <link>https://ni.lithium.com/t5/Measurement-Studio-for-NET/How-to-plot-data-using-PlotXvsY-method-from-the-AxCWGraph-object/m-p/252818#M2116</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;chowchow2469,&lt;BR /&gt;
&lt;BR /&gt;
You need to move the PlotXY call outside the loop. PlotXY clears old
data before plotting new values. Since your PlotXY call is inside the
loop with a single data value as the argument, the scatter graph will
plot a single point for each iteration of the loop. When you move the
PlotXY call outside the loop and pass the entire values and values2
array, you will see all your data displayed on the graph.&lt;BR /&gt;
&lt;BR /&gt;
If you would like to add points to an existing set of data displayed on
the graph, then you can call PlotXYAppend. PlotXYAppend does not clear
the old data before plotting. It only adds to the existing data points
displayed on the graph.&lt;BR /&gt;
&lt;BR /&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 10 Aug 2005 13:50:28 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Measurement-Studio-for-NET/How-to-plot-data-using-PlotXvsY-method-from-the-AxCWGraph-object/m-p/252818#M2116</guid>
      <dc:creator>Abhishek Ghuwalewala</dc:creator>
      <dc:date>2005-08-10T13:50:28Z</dc:date>
    </item>
  </channel>
</rss>

