Page 1 of 1

cursor issue with dragpoint

Posted: Tue Oct 03, 2023 7:34 am
by 15687866
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?

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

Re: cursor issue with dragpoint

Posted: Tue Oct 03, 2023 12:32 pm
by ruben
Hello,

thanks for feedback.

I understand you are using the latest nuget version of "Steema.TeeChart.NET", it's right?

Regards,
Ruben

Re: cursor issue with dragpoint

Posted: Wed Oct 04, 2023 9:33 am
by 15687866
Sorry for missing out the crucial details. I am testing on the following:

Steema.TeeChart.NET version 4.2023.3.13 (via NuGet)
WinForms
.NET 7,0
VB.NET

Re: cursor issue with dragpoint

Posted: Thu Oct 05, 2023 12:07 pm
by ruben
Hi,

a fix has been applied that will be included with the next version update.

Regards,
Ruben

Re: cursor issue with dragpoint

Posted: Wed Oct 18, 2023 3:42 am
by 15687866
Thank you