Sure !
I'm reading a binary file (using streams) containing interleaved oscilloscope traces. There is 16 traces in the file. I've thus created a chart with 16 series. I would like to add points to the chart series using such code :
For i:= 0 to tracenumber do
for j:=0 to xypointsnumber do
chart.serie.items.addXY (x,y,'',clred)
Thanks