Click here to Skip to main content
15,867,873 members
Articles / Web Development / HTML
Article

The HTML Report Engine

Rate me:
Please Sign up or sign in to vote.
4.94/5 (79 votes)
23 Jun 2006CPOL5 min read 827.3K   23.3K   277   62
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:

C#
//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
PropertyTypeDescription
FieldNameStringA column name in the DataSet.
HeaderNameStringString to be displayed as column header.
WidthIntWidth of the column in pixels.
AlignmentALIGNText alignment of the field. Default is ALIGN.LEFT.
BackColorColorColumn background color.
HeaderBackColorColorColumn header background color.
isTotalFieldboolIf true, the field is included for total. Default is false.
Field()ConstructorThere are eight overloaded constructors available.
Section
PropertyTypeDescription
GroupByStringColumn name on which group by is to be applied.
TitlePrefixStringPrefix text for section header.
BackColorColorSection header background color.
GradientBackgroundbooltrue – to display gradient color; false – to display plain background color. Default is false.
IncludeTotalboolDisplay/hide Total row.
SubSectionSectionSubsection of type Section.
IncludeChartboolDisplay/hide chart.
ChartTitleStringChart title text.
ChartShowAtBottombooltrue - show chart at bottom (after data rows); false – show chart at top. Default is false.
ChartChangeOnFieldStringChart Y-axis field, usually text field.
ChartValueFieldStringChart X-axis field, must be a numeric field. Default is record count.
ChartShowBorderboolEnable/disable chart border.
ChartLabelHeaderStringChart label column header text. Default is ‘Label’.
ChartPercentageHeaderStringChart percentage column header text. Default is ‘Percentage’.
ChartValueHeaderStringChart value column header text. Default is ‘Value’.
Section()ConstructorThere are three overloaded constructors available.
Report
PropertyTypeDescription
ReportTitleStringReport title text.
ReportSourceDataSetReport source is a DataSet. The DataSet must contain at least one DataTable with data.
SectionsArrayListCollection of report sections. Each element is of type Section.
ReportFieldsArrayListCollection of report fields. Each element is of type Field.
ReportFontStringReport font as string.
TotalFieldsArrayListCollection of column names to be listed in Total row. Each element is of type string.
IncludeTotalboolDisplay/hide Total row.
IncludeChartboolDisplay/hide chart.
ChartTitleStringChart title text.
ChartShowAtBottombooltrue - show chart at bottom (after data rows); false – show chart at top. Default is false.
ChartChangeOnFieldStringChart Y-axis field, usually text field.
ChartValueFieldStringChart X-axis field, must be a numeric field. Default is record count.
ChartShowBorderboolEnable/disable chart border.
ChartLabelHeaderStringChart label column header text. Default is ‘Label’.
ChartPercentageHeaderStringChart percentage column header text. Default is ‘Percentage’.
ChartValueHeaderStringChart value column header text. Default is ‘Value’.
GenerateReport()MethodGenerates the HTML report and returns it as a StringBuilder object.
SaveReport(string fileName)MethodGenerates 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:

C#
//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.

C#
//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.

C#
//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.

C#
//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)


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

Comments and Discussions

 
QuestionCan we add CSS to it Pin
Member 1203425613-Oct-15 1:02
Member 1203425613-Oct-15 1:02 
QuestionReport question Pin
Member 1203425612-Oct-15 19:51
Member 1203425612-Oct-15 19:51 
QuestionError when value in Section is null or empty Pin
Member 431485914-Sep-15 23:46
Member 431485914-Sep-15 23:46 
QuestionHow to Add Footer with Text and Values Pin
umesh_ka31-Aug-15 10:56
umesh_ka31-Aug-15 10:56 
QuestionGood Work Pin
Richard at BDG29-May-15 0:59
Richard at BDG29-May-15 0:59 
QuestionBrilliant ! Pin
starface22-Sep-14 23:56
starface22-Sep-14 23:56 
Questionvb code doestnt work Pin
Madura Saddhathilaka17-Aug-14 23:59
Madura Saddhathilaka17-Aug-14 23:59 
AnswerRe: vb code doestnt work Pin
Member 431485915-Sep-15 0:51
Member 431485915-Sep-15 0:51 
GeneralThanks Pin
mparvez11-Mar-14 0:33
mparvez11-Mar-14 0:33 
QuestionHtml Version=2.0.0.0 error Pin
manoj s sherje4-Mar-14 6:38
manoj s sherje4-Mar-14 6:38 
Questionhow to add new line break? Pin
Member 104686546-Feb-14 16:46
Member 104686546-Feb-14 16:46 
QuestionGreat work Pin
zoom662822-Jan-14 1:31
zoom662822-Jan-14 1:31 
QuestionN-Tier Pin
Ahmad Abd-Elghany30-Nov-13 11:26
Ahmad Abd-Elghany30-Nov-13 11:26 
GeneralGreat Pin
sahanmaduranga7-Aug-13 20:24
sahanmaduranga7-Aug-13 20:24 
GeneralMy vote of 5 Pin
viji@sampathraj25-Jun-13 22:52
viji@sampathraj25-Jun-13 22:52 
QuestionBrilliant utility Pin
zoom66282-Jun-13 16:50
zoom66282-Jun-13 16:50 
GeneralMy vote of 5 Pin
zoom66282-Jun-13 16:49
zoom66282-Jun-13 16:49 
GeneralMy vote of 5 Pin
Prasad Khandekar17-Mar-13 21:57
professionalPrasad Khandekar17-Mar-13 21:57 
Questionhow to import htmlreportengine.dll Pin
aarif moh shaikh31-Aug-12 20:40
professionalaarif moh shaikh31-Aug-12 20:40 
GeneralMy vote of 5 Pin
Manoj Kumar Choubey21-Aug-12 18:57
professionalManoj Kumar Choubey21-Aug-12 18:57 
GeneralMy vote of 5 Pin
hadi55267-Jul-12 20:49
hadi55267-Jul-12 20:49 
Generalcustom header? Pin
ifEndIF4-Jul-12 14:14
ifEndIF4-Jul-12 14:14 
GeneralMy vote of 4 Pin
Prosan27-Jun-12 1:59
Prosan27-Jun-12 1:59 
QuestionGood but can be better Pin
Member 902839525-May-12 1:22
Member 902839525-May-12 1:22 
Questionconvert generated html to pdf Pin
rcmurthy200422-May-12 23:50
rcmurthy200422-May-12 23:50 

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

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