We've got new bug with the new version of WPF TChart (v 4.1.2012.5103).
Points on the exported to XAML TChart are clipped.
Just try to add circle point (not only circle) to WPF TChart
Code: Select all
Steema.TeeChart.WPF.Styles.Points points = new Points();
points.Pointer.Style = PointerStyles.Circle;
points.Pointer.Pen.Color = Colors.Red;
points.Pointer.Brush.Color = Colors.White;
points.Add(10);
MyTChart.Series.Add(points);
The source point is ok: But result XAML is incorrect, right and bottom borders of the point are erased: We have the same problem with bars and probably with other series.