Measurement Studio for VC++

cancel
Showing results for 
Search instead for 
Did you mean: 

ScatterGraph InteractionModeDefault Cursor Bug

Hi,

     I use Measurement Studio 8.6.1 and when I set the InteractionModeDefault of a ScatterGraph via a ContextMenu the mouse cursor is not updated until it moves outside the ScatterGraph.

 

See code attached.

 

Thanks for your help.

 

Guillaume

 

 

0 Kudos
Message 1 of 2
(5,664 Views)

Hi Belly,

 

This behavior has been reported to R&D as Corrective Action Request #217352.  As a workaround, you can manually update the cursor using the following code:

 

 

 

Cursor = NationalInstruments.UI.MouseCursors.ZoomXY;

 note that you will need to set the cursor back to the default when themouse leaves the graph, which can be done pretty easily:

 

 

private void scatterGraph1_MouseLeave(object sender, EventArgs e) { Cursor = Cursors.Arrow; }

 

 

 

 

Al B.
Staff Software Engineer - TestStand
CTA/CLD
0 Kudos
Message 2 of 2
(5,642 Views)