WPF Zoom problem 3.5.3330.21113

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
MGV
Newbie
Newbie
Posts: 9
Joined: Wed May 23, 2007 12:00 am

WPF Zoom problem 3.5.3330.21113

Post by MGV » Fri Feb 27, 2009 1:11 pm

Hello

when we try zoom rigth from red point - we crash

private void button4_Click(object sender, RoutedEventArgs e)
{

Line Ser = new Line();
Ser.Pointer.Visible = true;
Ser.Pointer.Style = PointerStyles.Circle;
Ser.Pointer.VertSize = 2;
Ser.Pointer.HorizSize = 2;
tChart1.Series.Add(Ser);

Ser.FillSampleValues(48);

Points Pt = new Points();
Pt.Title = Title;
Pt.ShowInLegend = false;
Pt.Pointer.Style = PointerStyles.Circle;
Pt.Pointer.Brush.Color = Color.FromRgb(255, 0, 0);
Pt.Pointer.VertSize = 5;
Pt.Pointer.HorizSize = 5;
tChart1.Series.Add(Pt);

Pt.Add(Ser.XValues[10],Ser.YValues[10]);
}

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 Feb 27, 2009 1:23 pm

Hi MGV,

I could reproduce this here using the TeeChart release you mention but works fine using our current TeeChart.WPF sources so you may expect this to be fixed for the next maintenance release.
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

Post Reply