Hey all i am trying to populate an array like so:
Dim tmpArray As String = ""
Do Until x = Form1.arrayCal.Length
tmpArray = tmpArray & "," & x
x += 1
Loop
tmpArray = Replace(tmpArray, ",1", "1")
Dim arrDaysInMonth As String() = {tmpArray}
Dim arrNumOfVisits As Double() = {10, 20, 30, 40, 50, 52, 20, 20, 10, 35, 3, 8, 47, 7, 2, 5, 55, 8, 0, 0, 6, 55, 0, 2, 12, 0, 0, 21, 14, 0, 3}
Me.ChartControl1.Series.Clear()
Dim s As New DataDynamics.ActiveReports.Chart.Series()
s.Type = DataDynamics.ActiveReports.Chart.ChartType.Bar2D
s.Points.DataBindXY(arrDaysInMonth, arrNumOfVisits)
However, it does not seem like i can do it that way.. Doing it this way seems to put it only in a 1D array and not {1,2,3,4,5...} type of array as it needs to be in.
Any help would be great!
David