Anonymous - 2011-09-03

Its a bug in "ChartLine.xaml.cs" and "TickRuler.xaml.cs" files, method GenLine()

The bug is culture-specific and occurs when double to string conversion is applied and incorrect NumberFormat is used for path string.

My quick fix was o force culture to en-US, like this:

NumberFormatInfo nfi = new CultureInfo("en-US", false).NumberFormat;

and use it in all ToString calls : .ToString("G", nfi)