Click here to Skip to main content
15,885,546 members
Articles / Web Development / ASP.NET
Article

Organization Chart Generator

Rate me:
Please Sign up or sign in to vote.
4.25/5 (39 votes)
4 Mar 2008CPOL5 min read 389.6K   12.6K   110   112
An article on the development of an Organization Chart generator
Screenshot - Orgchart.jpg

Introduction

Due to various issues, this version was rewritten. The article for it can be found here.

Many organizations (or sub organizations, such as departments, teams, etc.) have Intranet sites which supply details regarding the specific organization.
It is usually required to display an organization chart. There are a few solutions:

  1. Use a static image, from PowerPoint, etc. - any change will require regeneration of image
  2. Use a commercial product - these cost money
  3. Design your own product - this is what I did

The article discusses a DLL, which accepts a datatable and returns an image with the organization chart.
The DLL can be called from Windows Forms or ASP.NET.
Most of the parameters (sizes, colors) can be controlled by the developer using the DLL - they are exposed as properties.

A Personal Note: As this is my first article, I would greatly appreciate comments on both the article and the code itself. I realize that the code still needs to be optimized. When I do so, I'll update the article.

Using the Code

The download zip file contains the C# solution, which has two projects:

  1. OrgChartGenerator, which contains the code for the DLL that generates the Org Chart.
  2. TestOrgchart, which contains a Windows Forms application that demonstrates the abilities of OrgChartGenerator and its usage.

Constructor

The OrgChartGenerator accepts a Typed DataSet in the constructor, with the employee list, in order to generate the Org Chart. The OrgChartGenerator.OrgData.OrgDetailsDataTable is the DataTable that the class will accept in the constructor. It can contain the whole organization structure or just parts of it. If it contains the whole organization, multiple Org Charts can be created from the same instance of the object. The structure of the DataTable is as follows:

  • string EmployeeID - Primary Key - the ID of the employee - employee number, email, login code or anything else that uniquely identifies the employee
  • string EmployeeName - The employee name
  • string BossEmployeeID - The employee ID of this Employees' Boss. This defines the organization structure.
  • string EmployeeTitle - The title/Job description for the current employee.

Methods

There is just one method - GenerateOrgChart, which is overloaded. The difference between the overloads is that one method accepts as parameters the required size of the resulting image and resizes it before returning it. The other returns it in the size as determined by calculation - the number of boxes (both x & y) times the number of employees.
This method returns a System.IO.Stream, which can be used to display an image, save to file, or any other activity. Another important parameter for this method is the BossEmployeeID. This parameter determines which employee will be at the top of the Org Chart.

This class/DLL can be used from a Windows Forms application in the following way:

C#
//First - create the object
private void TestForm_Load(object sender, EventArgs e)
{
   //Build the data for the org chart
   //This will be done differently in real life. 
   //The DataTable will be filled from a database, probably.
   OrgChartGenerator.OrgData.OrgDetailsDataTable myOrgData = 
     new OrgChartGenerator.OrgData.OrgDetailsDataTable();
   myOrgData.AddOrgDetailsRow("1111", "Alon", "", "Manager");
   myOrgData.AddOrgDetailsRow("1112", "Yoram", "1111", "Team Leader");
   myOrgData.AddOrgDetailsRow("1113", "Dana", "1111", "Team Leader");
   myOrgData.AddOrgDetailsRow("1114", "Moshe", "1113", "SW Engineer");
   myOrgData.AddOrgDetailsRow("1115", "Oren", "1113", "SW Engineer");
   myOrgData.AddOrgDetailsRow("1116", "Noa", "1113", "SW Engineer");
   myOrgData.AddOrgDetailsRow("1117", "Mor", "1112", "Consultant");
   myOrgData.AddOrgDetailsRow("1118", "Omer", "1112", "Consultant");
   //instantiate the object
   myOrgChart = new OrgChartGenerator.OrgChart(myOrgData);
}
//Then - Generate the Org Chart
/// <summary>
/// Generate the chart and link it to the picturebox control
/// </summary>
private void ShowChart()
{
   picOrgChart.Image = 
     Image.FromStream(
      myOrgChart.GenerateOrgChart("1111",
         System.Drawing.Imaging.ImageFormat.Bmp));
}

Properties

The image that is returned has default properties. In order to control the sizes and colors of the Org Chart, these properties are can be changed (all sizes are in pixels):

  • BoxFillColor - Which color will fill the boxes
  • BoxWidth - The width of each box
  • BoxHeight - The height of each box
  • Margin - The margin from the edges of the image to the boxes
  • HorizontalSpace - The space between the 2 employee boxes on the same level
  • VerticalSpace - The space between 2 levels of employees
  • FontSize - The font size for the employee details
  • LineColor - The color of both the box line and the connecting line
  • LineWidth - The width of both the box line and the connecting line
  • BGColor - The color in the Background of the image
  • FontColor - The font color
  • EmployeeData - A SortedDictionary, which contains data regarding the position of each employee on the chart. This can be used for checking if a specific Employee was clicked.

Changing these properties could generate weird results, so care should be taken by the user. For example - it would not look good if both the BoxFillColor and the FontColor were the same.

ASP.NET Usage

In order to use the DLL in ASP.NET, create a Web form which returns the response as a stream. Let's call it OrgChartImage.aspx. The codebehind file should look like this:

C#
protected void Page_Load(object sender, EventArgs e)
{
  // Change the response headers to output a JPEG image.
  this.Response.Clear();
  this.Response.ContentType = "image/jpeg";
  //Build the image 
  //In real life this can be done using parameters
  OrgChartGenerator.OrgChart myOrgChart;
  OrgChartGenerator.OrgData.OrgDetailsDataTable myOrgData = 
    new OrgChartGenerator.OrgData.OrgDetailsDataTable();
  myOrgData.AddOrgDetailsRow("1111", "Alon", "", "Manager");
  myOrgData.AddOrgDetailsRow("1112", "Yoram", "1111", "Team Leader");
  myOrgData.AddOrgDetailsRow("1113", "Dana", "1111", "Team Leader");
  myOrgData.AddOrgDetailsRow("1114", "Moshe", "1113", "SW Engineer");
  myOrgData.AddOrgDetailsRow("1115", "Oren", "1113", "SW Engineer");
  myOrgData.AddOrgDetailsRow("1116", "Noa", "1113", "SW Engineer");
  myOrgData.AddOrgDetailsRow("1117", "Mor", "1112", "Consultant");
  myOrgData.AddOrgDetailsRow("1118", "Omer", "1112", "Consultant");

  //instantiate the object
  myOrgChart = new OrgChartGenerator.OrgChart(myOrgData);
  System.Drawing.Image OC = 
     System.Drawing.Image.FromStream(myOrgChart.GenerateOrgChart("1111", 
        System.Drawing.Imaging.ImageFormat.Bmp));
  // Write the image to the response stream in JPEG format.
  OC.Save(this.Response.OutputStream, ImageFormat.Jpeg);
  OC.Dispose();
}

Calling the OrgChartImage.aspx can be done from any IMG tag:

ASP.NET
<img src="OrgChartImage.aspx"/>

Trapping MouseClick Events

The DLL exposes the EmployeeData property, which is a System.Collections.Generic.SortedDictionary. The code calling the DLL can use this property in order to see if a specific employee was clicked. This can be used for various purposes, such as linking to an employee image, showing other employee data or showing the next level of the organization chart. In ASP.NET, this can be done by defining an ImageMap control. Here's an example of how it is used in the WinFroms sample application:

C#
private void picOrgChart_MouseClick(object sender, MouseEventArgs e)
{
 //determine if the mouse clicked on a box, if so, show the employee name.
 string SelectedEmployee = "No employee";
 foreach (OrgChartGenerator.OrgChartRecord EmpRec in  
                             myOrgChart.EmployeeData.Values)
   {
     if (e.X >= EmpRec.EmployeePos.Left &&
         e.X <= EmpRec.EmployeePos.Right &&
         e.Y >= EmpRec.EmployeePos.Top &&
         e.Y <= EmpRec.EmployeePos.Bottom)
         {
           SelectedEmployee = EmpRec.EmployeeData.EmployeeName;
           break;
         }
   }
   MessageBox.Show(SelectedEmployee);
}

Inside the Black Box

OrgChart.cs includes the main functionality for the application. The first method, BuildTree, is used recursively to build an XmlDocument of employee IDs and calculate the box positions. Another recursive method, DrawChart(), draws the boxes and writes the texts inside them. Then it draws the lines connecting all the boxes and completes the organization chart. If necessary, the image is then resized and a stream is returned to the caller.

History

  • April 12, 2007
    • Initial release
  • April 18, 2007 
    • Fixed a bug in the calculation of image size
    • Added functionality for exposing the location of each employee, thus enabling to trap clicks on specific employees
  • April 19, 2007
    • Fixed some more bugs in location calculation
  • April 28, 2007
    • Following the great tips of Seishin#, rebuilt part of the mechanism. Now using an XmlDocument as a tree and drawing the tree recursively. This also fixed the overlapping box bugs that were reported.
  • April 30, 2007
    • Another small box positioning issue fixed
  • September 16, 2007
    • Due to various issues, this version was rewritten. The article for it can be found here.

License

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


Written By
Web Developer
Israel Israel
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionSetting Background Image for Node Pin
Member 429902921-Apr-10 19:33
Member 429902921-Apr-10 19:33 
AnswerRe: Setting Background Image for Node Pin
Rotem Sapir6-May-10 22:40
Rotem Sapir6-May-10 22:40 
GeneralOrg Generator With ASP.NET Pin
tmakhoul30-Nov-09 10:30
tmakhoul30-Nov-09 10:30 
GeneralRe: Org Generator With ASP.NET Pin
Rotem Sapir5-Dec-09 20:35
Rotem Sapir5-Dec-09 20:35 
GeneralRe: Org Generator With ASP.NET Pin
jeffvfren26-Feb-11 1:29
jeffvfren26-Feb-11 1:29 
QuestionFireFox (Mozilla) & Safari issues Pin
Sridhar Narasimhan29-Jun-09 23:04
Sridhar Narasimhan29-Jun-09 23:04 
AnswerRe: FireFox (Mozilla) & Safari issues Pin
Rotem Sapir29-Jun-09 23:11
Rotem Sapir29-Jun-09 23:11 
GeneralGreat Work !!! Pin
MetallicAnshul15-Apr-09 20:44
MetallicAnshul15-Apr-09 20:44 
Great Work... Smile | :)

Anshul Jaiswal

GeneralRe: Great Work !!! Pin
Rotem Sapir29-Jun-09 23:09
Rotem Sapir29-Jun-09 23:09 
GeneralRe: Great Work !!! [modified] Pin
cris033411-Nov-09 11:51
cris033411-Nov-09 11:51 
GeneralRe: Great Work !!! Pin
Rotem Sapir14-Nov-09 22:32
Rotem Sapir14-Nov-09 22:32 
GeneralMy vote of 1 Pin
Member 368237117-Jan-09 2:10
Member 368237117-Jan-09 2:10 
GeneralRe: My vote of 1 Pin
Rotem Sapir29-Jun-09 23:09
Rotem Sapir29-Jun-09 23:09 
GeneralRe: My vote of 1 Pin
dawmail33320-Jun-10 13:27
dawmail33320-Jun-10 13:27 
GeneralRe: My vote of 1 Pin
dawmail33320-Jun-10 13:24
dawmail33320-Jun-10 13:24 
Questionlooking for cyclic graph chart Pin
rasana6-Jun-08 5:32
rasana6-Jun-08 5:32 
AnswerRe: looking for cyclic graph chart Pin
Rotem Sapir7-Jun-08 7:57
Rotem Sapir7-Jun-08 7:57 
GeneralRe: looking for cyclic graph chart Pin
rasana7-Jun-08 19:13
rasana7-Jun-08 19:13 
GeneralRe: looking for cyclic graph chart Pin
Rotem Sapir7-Jun-08 19:17
Rotem Sapir7-Jun-08 19:17 
GeneralRe: looking for cyclic graph chart [modified] Pin
rasana10-Jun-08 4:43
rasana10-Jun-08 4:43 
Questiongreat work Pin
rasana6-Jun-08 4:05
rasana6-Jun-08 4:05 
AnswerRe: great work Pin
rasana6-Jun-08 4:15
rasana6-Jun-08 4:15 
GeneralWPF Project Pin
mo_kondori5-Mar-08 5:53
mo_kondori5-Mar-08 5:53 
GeneralRe: WPF Project Pin
Rotem Sapir9-Mar-08 4:20
Rotem Sapir9-Mar-08 4:20 
GeneralRe: WPF Project Pin
roland rodriguez27-May-08 10:53
roland rodriguez27-May-08 10:53 

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.