Princy,
thanks, but that example doesn't help me, because in the example use:
scatterChart.PlotArea.Series.Add(...);
With that option of command I already create some chart.
But what I need is to know is:
if I use this option of binding:
RadHtmlChart1.DataSource = tbl;
RadHtmlChart1.DataBind();
how can I setup all the series parameter programmaticaly (for all the series in the DataSource)?
This is because I never define the series (like the example):
ScatterLineSeries theoreticalData = new ScatterLineSeries();
theoreticalData.Name = "Theoretical Data";
Jaime