User (Legacy) Posted November 20, 2001 Report Posted November 20, 2001 I am making an app that compares data collected from a device my company makes. Basically, the user will be cutting data from other sources and pasting into this one. Since I don't know how many times the user might do this, I don't know how many series to allocate. And since I am only being passed the data and I don't wish to hang on to it forever (don't want to hog memory), I don't want to allocate an additional array each time the user calls my routine. How can I just add a new series to the chart, without blowing away the data already in the chart?
Software FX Posted November 27, 2001 Report Posted November 27, 2001 Simple, just do: OpenDataEx COD_VALUES, NumSeries+1,NumPoints ... Set data for las series CloseData COD_VALUES -- FP Software FX, Inc.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.