Broken graph lines
Posted: Wed Jul 15, 2009 10:26 am
Hi
I have a graph, containing a single FastLine series. All the points should be connected, but in the graph, it appears to have blank segments.
I exporting the values in the series using:
using (TextWriter writer = new StreamWriter(fileStream, Encoding.UTF8))
{
foreach (Series series in graphChannels.Series)
{
writer.WriteLine(series.Title);
int count = Math.Min(series.XValues.Count, series.YValues.Count);
for (int i = 0; i < count; i++)
writer.WriteLine("{0}\t{1}", series.XValues, series.YValues);
}
}
And imported it into Excel, to see if there really is any null values in the series - but I have not found any.
The series data, with X/Y-plot can be found here: http://www.bendtsen.net/export.xls
Any advise on how to resolve this?
I have a graph, containing a single FastLine series. All the points should be connected, but in the graph, it appears to have blank segments.
I exporting the values in the series using:
using (TextWriter writer = new StreamWriter(fileStream, Encoding.UTF8))
{
foreach (Series series in graphChannels.Series)
{
writer.WriteLine(series.Title);
int count = Math.Min(series.XValues.Count, series.YValues.Count);
for (int i = 0; i < count; i++)
writer.WriteLine("{0}\t{1}", series.XValues, series.YValues);
}
}
And imported it into Excel, to see if there really is any null values in the series - but I have not found any.
The series data, with X/Y-plot can be found here: http://www.bendtsen.net/export.xls
Any advise on how to resolve this?