This question is locked. New answers and comments are not allowed.
Attached image shows the difference between RadChart and Excel. Data is passed to RadChart as a List<List<DataPoint>>, where Datapoint has properties Value and Timestamp. series definitions are being created/added as follows:
I really need the cart to display exactly the values that I send it. any thoughts?
LineSeriesDefinition def = new LineSeriesDefinition() { ShowItemLabels = false, ShowPointMarks = false, SeriesName = id.ToString() };
def.InteractivitySettings = new InteractivitySettings() { HoverScope = InteractivityScope.Series };
SeriesMapping L = new SeriesMapping() { CollectionIndex = id, SeriesDefinition = def };
L.ItemMappings.Add(new Telerik.Windows.Controls.Charting.ItemMapping("Value", Telerik.Windows.Controls.Charting.DataPointMember.YValue));
L.ItemMappings.Add(new Telerik.Windows.Controls.Charting.ItemMapping("TimeStamp", Telerik.Windows.Controls.Charting.DataPointMember.XValue));
RadChart1.SeriesMappings.Add(L);
I really need the cart to display exactly the values that I send it. any thoughts?