cursor issue with dragpoint
Posted: Tue Oct 03, 2023 7:34 am
Hi,
Without clicking on any mouse button, the cursor associated with the dragpoint used to activate when the mouse hovered over a dragpoint, then reverted back to the default cursor when the mouse left the dragpoint. In the latest version, it seems that after the dragpoint cursor is activated, it never reverts back to the default cursor. Even after leaving the chart and re-entering, the cursor takes the form of the dragpoint cursor. Is there a setting to get the old behavior where the dragpoint cursor is only active when the mouse is over a dragpoint?
Regards,
Brian
Without clicking on any mouse button, the cursor associated with the dragpoint used to activate when the mouse hovered over a dragpoint, then reverted back to the default cursor when the mouse left the dragpoint. In the latest version, it seems that after the dragpoint cursor is activated, it never reverts back to the default cursor. Even after leaving the chart and re-entering, the cursor takes the form of the dragpoint cursor. Is there a setting to get the old behavior where the dragpoint cursor is only active when the mouse is over a dragpoint?
Code: Select all
Private Sub Form2_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Dim cht As New Steema.TeeChart.TChart
Dim s As New Steema.TeeChart.Styles.Points(cht.Chart)
Dim dragpt As New DragPoint(s)
Me.Controls.Add(cht)
s.FillSampleValues()
End Sub
Regards,
Brian