Hallo everybody,
I am using the following code to be able to drag Point in my lines:
Steema.TeeChart.Styles.Line line1 = new Steema.TeeChart.Styles.Line();
line1.FillSampleValues();
Steema.TeeChart.Tools.DragPoint dragPoint1 = new Steema.TeeChart.Tools.DragPoint();
tChart1.Tools.Add(dragPoint1);
dragPoint1.Cursor = System.Windows.Forms.Cursors.Cross;
dragPoint1.Series = line1;
line1.Color = Color.Red;
tChart1.Series.Add(line1);
Steema.TeeChart.Styles.Line line2 = new Steema.TeeChart.Styles.Line();
line2.FillSampleValues();
Steema.TeeChart.Tools.DragPoint dragPoint2 = new Steema.TeeChart.Tools.DragPoint();
tChart1.Tools.Add(dragPoint2);
dragPoint2.Cursor = System.Windows.Forms.Cursors.Cross;
dragPoint2.Series = line2;
line2.Color = Color.Green;
tChart1.Series.Add(line2);
The Problem is that the Cursor property only works on the first line! I tried all combination and changed orders and so on... Always on the first line the curosr works. The second line keeps the usual arrow Cursor as the rest of Windows.
I already found out that the order of adding the DragPoints is decidive, not the order of the lines themselves!
How can I have the cross Cursor appear on all lines??? I even believe in my very first try it worked, but I cannot reproduce that.
Thank you very much in advance!
DragPoint.Cursor not showing
Re: DragPoint.Cursor not showing
HAAAAAAALLOOOO STEEEEEEEEEEEMAAAAAAAAAAAA
Is there no more Support? or just not about bugs...
Is there no more Support? or just not about bugs...
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: DragPoint.Cursor not showing
Hi SICO,
Apologies for the delayed reply.
This works fine for me here using our current TeeChart for .NET sources, as can bee seen in the video attached. You may expect this being fixed in the next maintenance release due out at the beginning of the next month.
Apologies for the delayed reply.
This works fine for me here using our current TeeChart for .NET sources, as can bee seen in the video attached. You may expect this being fixed in the next maintenance release due out at the beginning of the next month.
- Attachments
-
- 2016-04-20_10-32-58.zip
- (94.3 KiB) Downloaded 883 times
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |