I would like to store a DateTime in two column but when I tried that and run my app no data are displayed
This is my code::

        DataTable dt = new DataTable();

        //Add three columns to the DataTable
        dt.Columns.Add("Date");
        dt.Columns.Add("Volume1");
        dt.Columns.Add("Volume2");

        DataRow dr;

        //Add rows to the table which contains some random data for demonstration
        dr = dt.NewRow();
        dr["Date"] = "Jan";
        dr["Volume1"] = new DateTime(2010,10,10);
        dr["Volume2"] =  new DateTime(2011,10,10);
        dt.Rows.Add(dr);`
link|improve this question

77% accept rate
How does your controller action look like? How does your view look like? Please provide more context/code. Currently your question doesn't contain enough information. – Darin Dimitrov Nov 29 '11 at 11:02
feedback

1 Answer

Rather than charting, you might be looking for the WebGrid helper.. I don't use DataTable, but the way I'd do that with the webgrid would be:

DateData class (having public properties is important for the binding):

public class DateData
{
    public string DateLabel { get; set; }
    public DateTime Volume1 { get; set; }
    public DateTime Volume2 { get; set; }
}

DateList action (in some Controller class):

public ActionResult DateList()
{
    List<DateData> dateDataList = new List<DateData>();

    dateDataList.Add(new DateData()
        {
            DateLabel = "Jan",
            Volume1 = new DateTime(2010, 10, 10),
            Volume2 = new DateTime(2010, 10, 10)
        });


    return View(dateDataList);
}

DateList.cshtml View:

@using TfsMvc.Controllers

@model IEnumerable<LabController.DateData>

@{
    Layout = "~/Views/Shared/_Layout.cshtml";
}

@{
    var grid = new WebGrid(
        source: Model,
        ajaxUpdateContainerId: "grid");
}

@grid.GetHtml()
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.