Exemplo n.º 1
0
 /// <description>
 /// Add a data point to the plot's curve.
 /// </description>
 /// <param name="plotId">Index of the plotting curve to which to add the data point.  Must be 0<=plotId<6.</param>
 /// <param name="value">Value of the data point to add to the curve.</param>
 /// <remarks> Data values are added to the </remarks>
 /// <remarks> A maximum number of 200 data points can be added to any single plotting curve at any one time.  If this limit is exceeded, data points on the right end of the curve are culled.</remarks>
 public void AddDatum(int plotId, float value)
 {
     InternalUnsafeMethods.AddDatum__Args _args = new InternalUnsafeMethods.AddDatum__Args()
     {
         plotId = plotId,
         value  = value,
     };
     InternalUnsafeMethods.AddDatum()(ObjectPtr, _args);
 }