How do you use a sqldatasource with the DataBindingCrossTable. All of the examples I have seen use a reader such as:
Chart1.DataBindCrossTable(
myReader,
"Name",
"Year",
"Sales",
"Label=Commissions{C}")

I have the data source already configured in the aspx code using a stored procedure. Do you have to perform the same process in code behind but use an OleDBDataReader instead? Also, in the source properties for the chart I do not see where you would choose the DataBindCrossTable only the chart type (ie: Line, Column, etc).

Any explanation would be appreciated.