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