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
It won't compile because DataTable doesn't implement IEnumerable interface. Try:
var enumerableTable = (dt as System.ComponentModel.IListSource).GetList(); chart1.DataBindTable(enumerableTable , "X");