i want to add line with values on chart
how do this
my array value {10,20,30.....}
i want to add line with values on chart
how do this
my array value {10,20,30.....}
This will bind all your data from the array to the chart in only one line of code:
chart1.Series[0].Points.DataBindY(insertYourArrayHere);