09-12-2013 01:58 AM
Dear all,
Visual Studio 2012
Measurement Studio 2012
ScatterGraph
I add points with the method PlotXYAppend.
I need to mark the added point with a bool value (true/false), to indicate if the point has already been saved or not.
This "saved" status is then used later on by a saving function to determine if the point needs to be saved,.
If the point has not yet been saved (Tag value is false) the saving function will save the point, and change the Tag value to true.
The issue is, that points do not have a Tag or Label property, like I know it from other graph components I've been working with.
I would like to avoid having to update a separate list of bool that would contain the "saved" status.
Does anyone know a possibility to mark a point somehow with a bool state (could also be a string that has e.g. "true" or "false")?
Thanks in advance!
09-17-2013 03:47 PM
OK, I ended up creating a separate list of bool to keep track of the saved state.