Hi Sathayaraj,
Thanks for contacting Syncfusion support. We have analyzed your query and prepared sample as per your requirement. For add the series and datasource for the series in code behind, please follow the below code.
[ASPX]
<ej:Chart runat="server" ID="Chart1"></ej:Chart> |
[C#]
protected void Page_Load(object sender, EventArgs e)
{
Series series = new Series();
series.Type = Syncfusion.JavaScript.DataVisualization.SeriesType.Spline;
List<data> data = new List<data>();
data.Add(new data(1, 20));
data.Add(new data(2, 30));
data.Add(new data(3, 10));
data.Add(new data(4, 15));
data.Add(new data(5, 30));
series.DataSource = data;
series.XName = "xvalue";
series.YName = "yvalue";
this.Chart1.Series.Add(series);
} |
In the above code, we have initialized the chart in the ASPX page. In code behind, we have created the series for the chart and added datasource for it. Now the chart will render like below.
In the below link, we have attached sample for your reference.
Same procedure applies for VB.Net also. Please find the below code, what we have written in VB.Net for create the series in code behind and add datasource for it.
[VB]
Dim series As New Series()
series.Type = Syncfusion.JavaScript.DataVisualization.SeriesType.Spline
Dim data As New List(Of data)()
data.Add(New data(1, 20))
data.Add(New data(2, 30))
data.Add(New data(3, 10))
data.Add(New data(4, 15))
data.Add(New data(5, 30))
series.DataSource = data
series.XName = "xvalue"
series.YName = "yvalue"
Me.Chart1.Series.Add(series) |
Please find the sample from the below link.
Regards,
Sanjith.