Click here to Skip to main content
Licence CPOL
First Posted 1 Jun 2006
Views 203,257
Bookmarked 230 times

The HTML Report Engine

By | 23 Jun 2006 | Article
The HTML report engine is a .NET class library which helps in generating well formatted HTML reports.

Sample HTML Report

Generated HTML Report

HTML Report Generator - Sample Application Screenshot

Demo Application Screenshot

Introduction

The HTML Report Engine is a .NET class library which helps in generating well formatted HTML reports. It can take any DataSet as its report source. Reports can have sectional data contents and bar charts.

Background

Crystal Reports is a reporting tool that comes along with VS.NET, but designing and deploying a Crystal Reports report in your application is a bit complex. Though this HTML report engine utility has only limited number of features, it can produce awesome reports with no complex designing and coding work involved.

Using the code

It’s a generic reporting utility which takes as a report source, a DataSet containing at least one DataTable. The class library contains three main classes:

  • Field
  • Section
  • Report

The Field class contains report field information like report column name, column header, background color, and so on.

The Section class holds information about a section like ‘group by’ column name, title prefix, background color, charting information, and so on.

The Report class contains all the methods and properties required to render an HTML report. In this class, a few CSS (Cascaded Style Sheet) classes are used to format the report content. The following code sample explains how to use this utility in your application:

//Include the namespace
using HTMLReportEngine;

//Create report object and set properties.
Report report = new Report();
report.ReportTitle = "Issue Report";
//Create a DataSet ds and fill it before using this code.
report.ReportSource = ds;

//Create Section
Section release = new Section("Release","Release: ");

//Create SubSection
Section project = new Section("Project","ProjectID: ");

//Add the sections to the report
release.SubSection = project;
report.Sections.Add(release);

//Add report fields to the report object.
report.ReportFields.Add(new Field("TicketNo", "Ticket", 50, ALIGN.RIGHT));
report.ReportFields.Add(new Field("CreatedBy", "CreatedBy", 150));
report.ReportFields.Add(new Field("AssignedTo", "AssignedTo"));
report.ReportFields.Add(new Field("Release", "Release", 200));
report.ReportFields.Add(new Field("Project", "Project", 150, ALIGN.RIGHT));

//Generate and save the report
report.SaveReport(@"C:\Data\Report.htm");

Class properties and methods

Field
Property Type Description
FieldName String A column name in the DataSet.
HeaderName String String to be displayed as column header.
Width Int Width of the column in pixels.
Alignment ALIGN Text alignment of the field. Default is ALIGN.LEFT.
BackColor Color Column background color.
HeaderBackColor Color Column header background color.
isTotalField bool If true, the field is included for total. Default is false.
Field() Constructor There are eight overloaded constructors available.
Section
Property Type Description
GroupBy String Column name on which group by is to be applied.
TitlePrefix String Prefix text for section header.
BackColor Color Section header background color.
GradientBackground bool true – to display gradient color; false – to display plain background color. Default is false.
IncludeTotal bool Display/hide Total row.
SubSection Section Subsection of type Section.
IncludeChart bool Display/hide chart.
ChartTitle String Chart title text.
ChartShowAtBottom bool true - show chart at bottom (after data rows); false – show chart at top. Default is false.
ChartChangeOnField String Chart Y-axis field, usually text field.
ChartValueField String Chart X-axis field, must be a numeric field. Default is record count.
ChartShowBorder bool Enable/disable chart border.
ChartLabelHeader String Chart label column header text. Default is ‘Label’.
ChartPercentageHeader String Chart percentage column header text. Default is ‘Percentage’.
ChartValueHeader String Chart value column header text. Default is ‘Value’.
Section() Constructor There are three overloaded constructors available.
Report
Property Type Description
ReportTitle String Report title text.
ReportSource DataSet Report source is a DataSet. The DataSet must contain at least one DataTable with data.
Sections ArrayList Collection of report sections. Each element is of type Section.
ReportFields ArrayList Collection of report fields. Each element is of type Field.
ReportFont String Report font as string.
TotalFields ArrayList Collection of column names to be listed in Total row. Each element is of type string.
IncludeTotal bool Display/hide Total row.
IncludeChart bool Display/hide chart.
ChartTitle String Chart title text.
ChartShowAtBottom bool true - show chart at bottom (after data rows); false – show chart at top. Default is false.
ChartChangeOnField String Chart Y-axis field, usually text field.
ChartValueField String Chart X-axis field, must be a numeric field. Default is record count.
ChartShowBorder bool Enable/disable chart border.
ChartLabelHeader String Chart label column header text. Default is ‘Label’.
ChartPercentageHeader String Chart percentage column header text. Default is ‘Percentage’.
ChartValueHeader String Chart value column header text. Default is ‘Value’.
GenerateReport() Method Generates the HTML report and returns it as a StringBuilder object.
SaveReport(string fileName) Method Generates the HTML report and saves it to disk with the given file name.

Formatting the report

Including totals

This report engine supports multiple SUM fields for a report. And the SUM can be displayed on demand in any of the sections added to the report. The SUM field must be of type numeric. The following code explains how to add SUM fields:

//Add Total fields
report.TotalFields.Add("Project");
report.TotalFields.Add("ProgressedHours");

//Set IncludeTotal property of the sections to true
project.IncludeTotal = true;
release.IncludeTotal = true;

Total Fields Sample

Adding charts

This engine can produce bar charts. The developer has to provide only the ChangeOnField and ValueField as input. If the developer has not given any ValueField, the record count will be taken as the Value. Changing the ChartShowAtBottom property would let your charts come either at the top or the bottom of the section.

//Set Chart properties
release.ChartChangeOnField = "Severity";
release.ChartValueField = "ProgressedHours";

release.ChartTitle = "Severity-Wise report";
release.ChartLabelHeader = "Severity Type";
release.ChartValueHeader = "Hours";
release.ChartPercentageHeader = "Progress";

Aligning fields

Field texts can be aligned to Left, Right, or Center. By default, the text alignment is set to Left.

//Set field Alignment
Field field1 = new Field();
field1.Alignment = ALIGN.RIGHT;

Specifying colors

The developers are allowed to change the background colors of section headers, column headers, and column data. Section headers can have gradient backgrounds by setting the GradientBackground property to true.

//Specifying Colors
//Main Section header color
release.BackColor = Color.WhiteSmoke;
release.GradientBackground = true;

//Sub Section header color
project.BackColor = Color.GhostWhite;
project.GradientBackground = true;

//Field Colors
field1.HeaderBackColor = Color.LightSlateGray;
field1.BackColor = Color.Gainsboro;
field2.HeaderBackColor = Color.LightSlateGray;
field2.BackColor = Color.White;
field3.HeaderBackColor = Color.LightSlateGray;
field3.BackColor = Color.Gainsboro;

Points of interest

It is recommended that you specify the column width for all report fields except one. That one may be a variable text field. The field without column width will automatically fit into the remaining space available in the table.

There is a simple way to export data to MS Excel. You can open the generated HTML file in Internet Explorer, right click on the report, and select 'Export to Excel'. Done!

History

  • Version 2.0 - Added features for formatting and to allow multiple Total columns in the report.
  • Version 1.0 - Initial version.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Ambalavanar Thirugnanam

Architect
BNY Mellon
India India

Member

Ambalavanar, working as a .NET Solutions Architect at BNY Mellon (iNautix), Chennai. Enjoys designing and developing UI & highly scalable apps.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionGood but can be better PinmemberMember 90283951:22 25 May '12  
Questionconvert generated html to pdf Pinmemberrcmurthy200423:50 22 May '12  
Questionnot support arabic !!! PinmemberMember 80491547:03 9 Mar '12  
GeneralMy vote of 5 Pinmembertamayim2:34 15 Feb '12  
QuestionCan this report engine be automated some how? Pinmembermsterling11:52 13 Feb '12  
AnswerRe: Can this report engine be automated some how? Pinmembertamayim22:41 14 Feb '12  
GeneralRe: Can this report engine be automated some how? Pinmembermsterling7:24 15 Feb '12  
GeneralMy vote of 5 PinmemberLaxmikant_Yadav20:17 20 Dec '11  
GeneralMy vote of 5 Pingroupgopalrajput2:38 24 Aug '11  
GeneralGroup wise Details Pinmemberashu21889:52 5 May '11  
QuestionPrinting Pinmembers_e_jean2:45 27 Dec '10  
AnswerRe: Printing Pinmemberashu21887:19 5 May '11  
Generalheader on each page PinmemberArielR11:06 19 Feb '10  
GeneralFantastic article! Question about having multiple subsections within a section PinmemberPatel Hardik14:47 14 Mar '09  
GeneralRe: Fantastic article! Question about having multiple subsections within a section PinmemberAmbalavanar Thirugnanam19:57 14 Mar '09  
GeneralAwsome Article Pinmemberrmarkram1:13 24 Oct '08  
GeneralChart on report section PinmemberWatever4411:46 22 Aug '08  
GeneralRe: Chart on report section PinmemberWatever4411:56 22 Aug '08  
GeneralRe: Chart on report section PinmemberAmbalavanar Thirugnanam21:12 22 Aug '08  
QuestionMulti-page reports? Pinmembermlyons19:30 1 Jul '08  
AnswerHtml report PinmemberMember 285513518:10 23 May '08  
GeneralVery Innovative! PinmemberIllogic18:16 1 Oct '07  
I often find that using those commercial reporting tools in small projects overkills at deployment and of course at budget too. This utility is great and would become handy. My two-cent of coments, adding a preview panel on the screen so you could preview as you design it.
 
Great work and thanks for sharing! Rose | [Rose]
 
Illogic Cool | :cool:
GeneralATGrid Report Control Pinmemberetcell18:42 30 Jul '07  
GeneralOrder of sections PinmemberJACK024595:18 26 Jun '07  
QuestionNice work...but I have 1 question Pinmemberbcpdrp13:22 25 Jun '07  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120529.1 | Last Updated 23 Jun 2006
Article Copyright 2006 by Ambalavanar Thirugnanam
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid