Posted on: 1/31/2014 7:09:28 PM | Views : 630

Right now I have all my columns bounded..however, I want to add row headers, from Jan-Dec in my dgv how would I go about doing that?
<asp:GridView ID="GridViewChart" runat="server" Width="876px" AutoGenerateEditButton="True" DataSourceID="SqlChart" BackColor="blue" BorderColor="Blue" BorderWidth="5px" CellPadding="3" ForeColor="Black" GridLines="None" BorderStyle="None" CellSpacing="2" AutoGenerateColumns="False" OnRowCreated="GridViewChart_RowCreated"> <AlternatingRowStyle BackColor="White" /> <Columns> <asp:BoundField DataField="vacAccrued" HeaderText="Accrued" ...

Go to the complete details ...