WPF Teechart - CursorTool FastCursor property

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Priya Hatipkar
Newbie
Newbie
Posts: 46
Joined: Wed Jan 28, 2009 12:00 am

WPF Teechart - CursorTool FastCursor property

Post by Priya Hatipkar » Fri Mar 13, 2009 2:04 pm

WPF Teechart - Cursor disappears if CursorTool FastCursor property is set to true.
Below is the code snippet used for it
public partial class CursorTest : Window
{
private Tstyle.Line lineSeries1 = new Tstyle.Line();
private CursorTool cursorSRC = new CursorTool();
public CursorTest()
{
InitializeComponent();
tChart1.Series.Add(lineSeries1);
tChart1.Aspect.View3D = false;


this.lineSeries1.FillSampleValues(200);

tChart1.Tools.Add(cursorSRC);
this.cursorSRC.FollowMouse = true;
this.cursorSRC.Series = this.lineSeries1;
cursorSRC.FastCursor = true;

}
}

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Fri Mar 13, 2009 4:37 pm

Hi Priya,

I've been able to reproduce the issue here and added it (TW16013965) to the bug list to be fixed.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Damien
Newbie
Newbie
Posts: 1
Joined: Mon Aug 06, 2007 12:00 am

Post by Damien » Fri May 29, 2009 12:22 pm

Buenos dias Narcís,
I'm currently using CursorTool, and very interested by improving performance with this FastCursor property in WPF.
Are you able to say when the release with this bug correction (TW16013965) will be available ? Will it be corrected in TeeChart .NET v3 or v2009 only ?
Thanks for your reply,

Regards,

Damien

Yeray
Site Admin
Site Admin
Posts: 9612
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Post by Yeray » Fri May 29, 2009 2:13 pm

Hi Damien,

I can't tell you that for sure. This probably will depend on the cost of porting the fixes from v2009 (v4) to v3. This depends on every specific issue.

Technical support for v3 won't be discontinued. However at some stage we will cease to publish updates. We can commit to fix reasonable issues in v3 for about a year.
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Post Reply