I am assuming you need to create a series for each status type in your Status Column and have your Y value as your Value column
The follwing API should work, it will group the series by Status and set the X value to Date and Y value to Value
chart1.DataBindCrossTable(datasource,
"Status", "Date","Value", "");