-->

How to apply Databar formatting on Gridview Like Excel conditional formatting options using asp.net c#.

Introduction

In this post I am explain explain how to apply Databar formatting on Gridview Like Excel conditional formatting options using asp.net c#.
In MS Excel Data bars is a conditional formats that create visual effects in our data. These conditional formats make it easier to compare the values of a range of cells at the same time, just as we do in a bar chart.
Here in this example, I have created a sales report shown data in a Gridview, where we can quickly see which months have the smallest sales, and which months have the largest using Databars like MS Excel.

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 table for store/fetch data.

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

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: Modify model for Store Percentage of data.


  1. namespace ASPGridDatabar
  2. {
  3. using System;
  4. using System.Collections.Generic;
  5. public partial class SalesData
  6. {
  7. public int SalesDataID { get; set; }
  8. public string MonthName { get; set; }
  9. public decimal SalesAmount { get; set; }
  10. public int Percentage { get; set; }
  11. }
  12. }

Step-6: Add a Webpage and Design for show data with Databars.

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>Sales Report Month wise with Databars Like Excel using ASP.NET and C#.</h3>
  2. <div style="padding:20px;">
  3. <br />
  4. <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="false" CellPadding="4">
  5. <Columns>
  6. <asp:BoundField HeaderText="Month" DataField="MonthName" />
  7. <asp:BoundField HeaderText="Sales Amount" DataField="SalesAmount" />
  8. <asp:TemplateField>
  9. <ItemTemplate>
  10. <div class="container">
  11. <div class="graph">
  12. <div class="databar" style='width:<%#Eval("Percentage")%>%;'>
  13. &nbsp;
  14. </div>
  15. </div>
  16. <div class="datavalue">
  17. <%#Eval("SalesAmount") %>
  18. </div>
  19. </div>
  20. </ItemTemplate>
  21. </asp:TemplateField>
  22. </Columns>
  23. </asp:GridView>
  24. </div>
Css Code
  1. .container
  2. {
  3. width:100px;
  4. height:20px;
  5. position:relative;
  6. }
  7. .graph, .datavalue {
  8. width:100%;
  9. height:100%;
  10. top:0;
  11. left:0;
  12. position:absolute;/* for making 2 div overlap*/
  13. text-align:right;
  14. color:black;
  15. font-weight:bold;
  16. }
  17. .graph {
  18. width:95%; /*for same looks as it is in excel*/
  19. }
  20.  
  21. .datavalue {
  22. z-index:10;/*For make it over graph div*/
  23. }
  24. .databar {
  25. /*show databar style like excel*/
  26. background-image:url('/images/Databar.png');
  27. background-position:right center;
  28. background-repeat:repeat-y;
  29. height:96%;
  30. background-color:rgb(16,145,240);
  31. }

Step-7: Write code into page load event for show data.

Write below code into Page_Load event for show data from database.

  1. protected void Page_Load(object sender, EventArgs e)
  2. {
  3. if (!IsPostBack)
  4. {
  5. PopulateSaleData();
  6. }
  7. }

   And here is the functioin PopulateSalesData

  1. private void PopulateSaleData()
  2. {
  3. List<SalesData> allData = new List<SalesData>();
  4. using (MyDatabaseEntities dc = new MyDatabaseEntities())
  5. {
  6. allData = dc.SalesDatas.ToList();
  7. }
  8. int max = Convert.ToInt32(allData.Max(a=>a.SalesAmount));
  9. foreach (var a in allData)
  10. {
  11. decimal p = (100 * a.SalesAmount) / max;
  12. a.Percentage = Convert.ToInt32(p);
  13. }
  14.  
  15. GridView1.DataSource = allData;
  16. GridView1.DataBind();
  17. }

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: