so I was able to successfully code this...


vb Code:
  1. Imports System.Windows.Forms.DataVisualization.Charting
  2.  
  3.  
  4. Public Class Form2
  5.  
  6.  
  7.  
  8.     Public Sub Form2_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
  9.  
  10.         Dim theChart As New Chart
  11.         Dim lineone As New List(Of Point)
  12.         Dim linetwo As New List(Of Point)
  13.         Dim theArea As New ChartArea
  14.         Dim Series As New Series
  15.  
  16.         lineone.Add(New Point(TextBox1.Text, TextBox3.Text))
  17.         lineone.Add(New Point(TextBox2.Text, TextBox4.Text))
  18.         'linetwo.Add(New Point(textbox1.text, TextBox5.Text))
  19.         'linetwo.Add(New Point(textbox2.text, TextBox6.Text))
  20.  
  21.         theChart.DataSource = lineone 'I want to add linetwo to this
  22.  
  23.  
  24.         theArea.Name = "chartArea"
  25.         theChart.ChartAreas.Add(theArea)
  26.  
  27.         theChart.Series.Clear()
  28.  
  29.  
  30.         Series.XValueMember = "X"
  31.         Series.YValueMembers = "Y"
  32.         Series.ChartArea = "chartArea"
  33.  
  34.         theChart.Series.Add(Series)
  35.  
  36.         Me.Controls.Add(theChart)
  37.         theChart.Dock = DockStyle.Fill
  38.  
  39.     End Sub
  40.  
  41.  
  42. End Class


To which I was pretty happy that it worked the first time, the problem I am having now is trying to switch this to a line graph, add the second line/second set of points, and label the lines. I have read a few hundred posts about chart controls and they all seem to be geared around bar graphs with one set of data. I know im only a few lines of code away from getting this to work I just need a little nudge in the right direction