06-04-2006 07:26 AM
06-04-2006 01:02 PM
You cannot simply add values to a plot in graph like you do in a strip chart: every plot is a full entity that cannot be modified. Instead, it can be accessed to retrieve its data so what you can do is (in case you don't have a copy of plotted values) use SetPlotAttribute to retrieve ATTR_PLOT_XDATA and ATTR_PLOT_YDATA in arrays (if you don't know the size of the plot use ATTR_PLOT_XDATA_SIZE to determine the number of elements in the plot depending on the byte size and the type of data, next dimension the arrays to store data in). next you can add values directly to the arrays, delete old plot and draw the new one.
Look at the example attached (it answers also to your other problems regarding tables).
Roberto
06-04-2006 07:00 PM
06-05-2006 01:38 AM
Thanks, Colin: you're right!