-->

How to Implement Chart Control inside Gridview using ASP.NET.

Introduction

In this post, I explain how to Implement Chart Control inside Gridview using ASP.NET.

Steps :

Step - 1 : Create New Project.

Go to File > New > Project > Select asp.net web forms application > Entry Application Name > Click OK.

Step-2: Add a Database.

Go to Solution Explorer > Right Click on App_Data folder > Add > New item > Select SQL Server Database Under Data > Enter Database name > Add.

Step-3: Create a table for Fetch Data.

Open Database > Right Click on Table > Add New Table > Add Columns > Save > Enter table name > Ok.
In this example, I have used table as below
IMAGE 1

Step-4: Add Entity Data Model.

Go to Solution Explorer > Right Click on Project name form Solution Explorer > Add > New item > Select ADO.net Entity Data Model under data > Enter model name > Add.
A popup window will come (Entity Data Model Wizard) > Select Generate from database > Next >
Chose your data connection > select your database > next > Select tables > enter Model Namespace > Finish.

Step-5: Add a Webpage and Design for show Chart with Database data inside Gridview.

Go to Solution Explorer > Right Click on Project name form Solution Explorer > Add > New item > Select web form/ web form using master page under Web > Enter page name > Add.

HTML Code
  1. <h3>Chart inside gridview showing Sales Report </h3>
  2. <div>
  3. <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="false" Width="700px" OnRowDataBound="GridView1_RowDataBound">
  4. <Columns>
  5. <asp:BoundField HeaderText="Employee Name" DataField="EmployeeName" ItemStyle-Width="120px" />
  6. <asp:TemplateField HeaderText="Sales Data">
  7. <ItemTemplate>
  8. <div>
  9. <asp:Chart ID="Chart1" runat="server" Width="550px" Height="200px">
  10. <Series>
  11. <asp:Series Name="Series1"></asp:Series>
  12. </Series>
  13. <ChartAreas>
  14. <asp:ChartArea Name="ChartArea1"></asp:ChartArea>
  15. </ChartAreas>
  16. </asp:Chart>
  17. </div>
  18. </ItemTemplate>
  19. </asp:TemplateField>
  20. </Columns>
  21. </asp:GridView>
  22. </div>

Step-6: Write code in page_load event for fetch data from database and show in Gridview.


  1. protected void Page_Load(object sender, EventArgs e)
  2. {
  3. if (!IsPostBack)
  4. {
  5. PopulateData();
  6. }
  7. }
Here is the function...
  1. private void PopulateData()
  2. {
  3. using (MyDatabaseEntities dc = new MyDatabaseEntities())
  4. {
  5. var v = (from a in dc.SalesDatas
  6. select new
  7. {
  8. a.EmployeeName
  9. }).Distinct();
  10. GridView1.DataSource = v.ToList();
  11. GridView1.DataBind();
  12. }
  13. }

Step-7: Write code in GridView1_RowDataBound for bind Database data with chart control inside gridview.


  1. protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
  2. {
  3. if (e.Row.RowType == DataControlRowType.DataRow)
  4. {
  5. string empName = DataBinder.Eval(e.Row.DataItem, "EmployeeName").ToString();
  6. Chart chart = (Chart)e.Row.FindControl("Chart1");
  7. if (chart != null)
  8. {
  9. using (MyDatabaseEntities dc = new MyDatabaseEntities())
  10. {
  11. var v = dc.SalesDatas.Where(a => a.EmployeeName.Equals(empName)).ToList();
  12. chart.DataSource = v;
  13. chart.Series["Series1"].XValueMember = "MonthName";
  14. chart.Series["Series1"].YValueMembers = "SalesAmount";
  15. chart.DataBind();
  16.  
  17. // for force to print each label
  18. chart.ChartAreas[0].AxisX.LabelStyle.Interval = 1;
  19.  
  20. }
  21. }
  22. }
  23. }

Step-8: Run Application.

Hello ! My name is Sourav Mondal. I am a software developer working in Microsoft .NET technologies since 2010.

I like to share my working experience, research and knowledge through my site.

I love developing applications in Microsoft Technologies including Asp.Net webforms, mvc, winforms, c#.net, sql server, entity framework, Ajax, Jquery, web api, web service and more.

Related Posts: