I\'d like to use a polar chart in my test application. I\'ve a data table with a couple of columns where the column with the name of \"X\" should provide the x value members, th
This may help you Write this on page load
chart.DataSource = dataqtableName; chart.Series["seriesName"].XValueMember = "columNameUwantToBind"; chart.Series["seriesName"].YValueMembers = "columNameUwantToBind"; chart.DataBind();