Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.