I'm dynamicly creating each series of the chart but it is creating duplicate x axis values. WHen I tried to create an axis nothing shows at all. I think the issue may be axis type.Code below
foreach (Entity l in lsummary.AllEntities) { CRA_RtCSQsSummary en = new CRA_RtCSQsSummary(); en = (CRA_RtCSQsSummary)l; string queuename= en.CSQName.ToString(); Infragistics.Silverlight.Chart.Series s = new Infragistics.Silverlight.Chart.Series(); s.Label = queuename; s.ChartType = Infragistics.Silverlight.Chart.ChartType.Line; s.DataSource = results.Where(x => x.CSQName == queuename); s.DataMapping = "Value=TotalCalls;Label=hour";
//s.AxisX = "{Binding ElementName=Xaxis}"; this.xamWebChart1.Series.Add(s); } }
Hi there,
Would it be possible for you to attach a small sample project demonstrating the issue you are seeing? This would better help me assist you.
Thanks,
Marisa