02-13-2013 08:31 AM
When I set InteractionMode = AnnotationInteractionModes.None, I still can move annotation by dragging the circle (this is point annotation). How do I disable this movement altogether.
Solved! Go to Solution.
02-13-2013
01:25 PM
- last edited on
11-20-2024
04:27 PM
by
Content Cleaner
This appears to be an issue with how the annotations implement the “drag target” interaction mode. I have created a task to fix this.
As a workaround, you can add and remove the annotation from the graph:
annotation.InteractionMode = AnnotationInteractionModes.None;
graph.Children.Remove( annotation );
graph.Children.Add( annotation );
This will force the annotation to re-initialize the drag handling to match the current InteractionMode
value.
08-11-2015
10:54 AM
- last edited on
11-20-2024
04:28 PM
by
Content Cleaner
Just wanted to let you know this issue (#391307) was fixed in the Measurement Studio 2015 release.