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]);
}
WPF Zoom problem 3.5.3330.21113
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
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.
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 |
Instructions - How to post in this forum |