WPF Bug

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 Bug

Post by MGV » Wed Nov 19, 2008 11:33 am

Hello

last point ( before ) space is not shown .( on winforms version works ok)


Line Ser = new Line();
tChart1.Series.Add(Ser);
tChart1.Aspect.View3D = false;
Ser.Pointer.Visible = true;
Ser.TreatNulls = TreatNullsStyle.DoNotPaint;
Ser.Pointer.Style = PointerStyles.Circle;
Ser.Pointer.VertSize = 6;
Ser.Pointer.HorizSize = 6;

DateTime dt = DateTime.Today;
for (int i = 0; i < 8; i++)
{
if (i == 3)
Ser.Add(dt, null);
else
Ser.Add(dt, i);

dt = dt.AddMinutes(30);
}

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

Post by Narcís » Wed Nov 19, 2008 4:11 pm

Hi MGV,

Thanks for reporting. I could reproduce the issue here and added it (TF02013578) to the defect list to be fixed for next releases.
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