- Jun 2, 2008
- 163
- 0
- 0
Does anyone know of a guide that shows how to do this?
I'm trying to read a database into a array, two parts.
Day and Cost
I want to read this and plot it on a bar graph.
I would like to make it dynamic so I can choose my Days and then create the graph.
http://www.prestigedevgroup.co...TutorialAjaxPage2.aspx
I'm working with this code..
Specifically, the area I'm having a problem with is.
****
Chart.LabelsX.Add("Monday")
...
Chart.LabelsX.Add("Friday")
and
H.Add("Monday", 10)
...
H.Add("Sunday", 35)
****
This part above needs to be read from a database, what would be the best technique to read tables that have these two columns?
Thanks
I'm trying to read a database into a array, two parts.
Day and Cost
I want to read this and plot it on a bar graph.
I would like to make it dynamic so I can choose my Days and then create the graph.
http://www.prestigedevgroup.co...TutorialAjaxPage2.aspx
I'm working with this code..
Specifically, the area I'm having a problem with is.
****
Chart.LabelsX.Add("Monday")
...
Chart.LabelsX.Add("Friday")
and
H.Add("Monday", 10)
...
H.Add("Sunday", 35)
****
This part above needs to be read from a database, what would be the best technique to read tables that have these two columns?
Thanks