Dear Telerik Team,
I am still working on this issue. I found the NumericalAxis Demo Project very interesting for this one. So I implemented this in my project. Everything was working well, like in the demo. Now I try to add my specific data to it.
My Method look like this :
List<DateTime> data = _scriptLogParser.GetLogEntrys();
intindex = data.FindIndex(p => p == DateTime.FromOADate(currentTime));
item = newChartSeriesItem();
if(index >= 0)
{
item.YValue = 1;
}
else
{
item.YValue = 0;
}
series.Items.Add(item);
}
radChart1.Series.Add(series);
radChart1.DataBind();
First I get my data from "_scriptLogParser.GetLogEntrys();".
After that I set the start date and end date and interate through this in minute steps. I debug this part and it worked pretty well. But my Output is false. It looks like this :
This is not correct. I manipulate the data. So I got data from 15 till 18 o´clock. Than nothing and then the data come up at 23 o´clock. But it seems that the chart is displaying there was always data.
Where is my wrong line ?
Thanks again.
0
Yavor
Telerik team
answered on 20 Sep 2011, 09:55 AM
Hi Marc,
Based on the supplied information, it is hard to determine what is causing this unwanted output. If this issue persists, you can open a formal support ticket, and send us a small project, demonstrating your setup, and showing the issue. We will debug it locally, and advise you further.
Kind regards,
Yavor
the Telerik team
Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>