I create a website with Visual Studio 2010 and i want to add a chart that displays multiple lines.The number of lines can vary , for example N. I have tried this code:
For count2 As Integer = 0 To N-1
Dim s As New Series
s.ChartType = SeriesChartType.Line
Dim ui As String = count2
s.Name = ui
For count As Integer = 0 To 5
s.Points.AddXY( array1(count2,count),array2(count2,count))
Next
s.Color = Color.Blue
Chart1.Series.Add(s)
Next
but the chart displays those lines as a single continious line.How can i make it to show them seperately at the same chart?