Introduction
There is, in organizations, a constant need to display tree structures. This can be done for file systems, Organization charts, Bill of Material, etc. This article discusses a component which can generate an image of the required tree, based on the data in a DataTable
. 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.
This first version of this DLL was called OrgChart Generator
and was published here. During development of a BOM display application, it became obvious that the Org chart Generator lacks a few very important issues:
- It was too specific: the DLL is a Tree generator and should be named as such.
- A node in the Tree could not appear twice. An Employee may work for more than one department.
- The data structure used (both an
XmlDocument
and a SortedDictionary
) was not good enough.
So, it became necessary to rewrite the whole application and give it a new name. Hence, this article.
Using the Code
The download ZIP file contains the C# solution, which has two projects:
TreeGenerator
, which contains the code for the DLL that generates the Tree image
TestTreeGenerator
, which contains a Windows Forms application that demonstrates the abilities of TreeGenerator
and its usage.
Constructor
The TreeGenerator
accepts a Typed DataTable
in the constructor, with the node list, in order to generate the tree. The TreeData.TreeDataTableDataTable
is the DataTable
that the class will accept in the constructor. It can contain the whole tree structure or just parts of it. If it contains the whole tree, multiple miniTrees
can be created from the same instance of the object. The structure of the DataTable
is as follows:
string nodeID
- Primary Key - the ID of the node - employee number, item code or anything else that uniquely identifies the node
string parentNodeID
- Primary Key - The ID of the node parent. This defines the tree structure. It may be String.Empty
string nodeDescription
- A short description for the node
string nodeNote
- A note for the node
Methods
There is just one main method, GenerateTree
, 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 nodes.
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 StartFromNodeID
. This parameter determines which node will be at the top of the tree.
Another method exists mainly as a helper method. getRectangleFromNode
is used internally, but can also be used externally to return the Rectangle
of the node coordinates, based on the XmlNode
. This class/DLL can be used from a Windows Forms application in the following way:
private void Form1_Load(object sender, EventArgs e) {
TreeGenerator.TreeData.TreeDataTableDataTable dtTree =
new TreeData.TreeDataTableDataTable();
dtTree.AddTreeDataTableRow("1000", "","1000","");
dtTree.AddTreeDataTableRow("2000", "1000","2000","");
dtTree.AddTreeDataTableRow("2001", "1000","2001","");
dtTree.AddTreeDataTableRow("3000","2000", "3000","");
dtTree.AddTreeDataTableRow("3001", "2000", "3001","");
dtTree.AddTreeDataTableRow("3000", "2001", "3000","");
dtTree.AddTreeDataTableRow("4000", "3000", "4000","");
dtTree.AddTreeDataTableRow("4001", "3000", "4001", "");
myTree = new TreeBuilder(dtTree);
}
picTree.Image = Image.FromStream(
myTree.GenerateTree("1000",
System.Drawing.Imaging.ImageFormat.Bmp));
Properties
The image that is returned has default properties. In order to control the sizes and colors of the Tree, these properties 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 node 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
xmlTree
- An XmlDocument
containing all the tree data, including the position of each node on the chart. This can be used for checking if a specific node 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.
Trapping MouseClick Events
Using the xmlTree
property, it can be determined where the user clicked. Below is an example for a Windows Forms application. This will not work for ASP.NET.
private void picOrgChart_MouseClick(object sender, MouseEventArgs e)
{
Rectangle currentRect;
string SelectedNode = "No Node";
foreach (XmlNode oNode in myTree.xmlTree.SelectNodes("//Node"))
{
currentRect = myTree.getRectangleFromNode(oNode);
if (e.X >= currentRect.Left &&
e.X <= currentRect.Right &&
e.Y >= currentRect.Top &&
e.Y <= currentRect.Bottom)
{
SelectedNode =
oNode.Attributes["nodeDescription"].InnerText;
break;
}
}
MessageBox.Show(SelectedNode);
}
ASP.NET Usage
Using this code in ASP.NET requires two pages (see attached ZIP file):
- ShowTree.aspx - Accepts the user input and shows the image
- OrgChartImage.aspx - Generates the image and returns it to the calling page.
ShowTree.aspx
The page contains a textbox
that accepts any input. Whatever the user typed will become the top node of the tree. In real life, the textbox
(or DDL, or any other control) will accept only employee ID, Item Code, etc. Clicking on the "Show Tree" button will show the tree for the typed in name. In this case, it will be a randomly generated tree. In real life, the tree data should be selected from a database.
Clicking on any of the tree nodes will show the child nodes of that node, in a new tree. It is possible, instead of showing a new tree each time, to enlarge the tree all the time, by keeping the tree dataTable
as a static
object.
The main function in this page is the one that generates the image. The image can be shown as an imageMap
, or any other image tag. In this case, the imageMap.ImageUrl
is linked to the page which reads the image from the cache and returns it as a stream.
This function also gets the XmlDocument
from the TreeGenerator
object and defines the hotspots for the imageMap
.
private void GenerateChart(string mItem)
{
TreeGenerator.TreeBuilder currentBOM
= new TreeGenerator.TreeBuilder(GetDT(mItem));
currentBOM.HorizontalSpace = 15;
currentBOM.VerticalSpace = 15;
currentBOM.FontSize = 7;
currentBOM.BoxHeight = 80;
currentBOM.BoxWidth = 80;
currentBOM.LineColor =
System.Drawing.ColorTranslator.FromHtml("#BFBFC9");
currentBOM.FontColor =
System.Drawing.ColorTranslator.FromHtml("#3B4164");
System.Drawing.Image OC =
System.Drawing.Image.FromStream(
currentBOM.GenerateTree(
mItem, System.Drawing.Imaging.ImageFormat.Bmp));
string nameOfImage =
Session.SessionID + "CurrentImage";
Cache.Insert(nameOfImage, OC, null,
DateTime.MaxValue,TimeSpan.FromMinutes(1),
CacheItemPriority.NotRemovable, null);
impBOM.ImageUrl = "~/OrgChartImage.aspx?ID=" + nameOfImage;
impBOM.HotSpots.Clear();
foreach (XmlNode oNode in currentBOM.xmlTree.SelectNodes("//Node"))
{
RectangleHotSpot RectHS
= new RectangleHotSpot();
RectHS.HotSpotMode = HotSpotMode.PostBack; Rectangle
currentRect = currentBOM.getRectangleFromNode(oNode);
RectHS.Top = currentRect.Top;
RectHS.Bottom = currentRect.Bottom;
RectHS.Left = currentRect.Left;
RectHS.Right = currentRect.Right;
RectHS.PostBackValue = oNode.Attributes["nodeID"].InnerText;
RectHS.AlternateText
= oNode.Attributes["nodeDescription"].InnerText;
impBOM.HotSpots.Add(RectHS);
}
}
OrgChartImage.aspx
This page loads the cache item based on the passed parameter, converts it into an image and writes it into the output stream. There is only one function here:
protected void Page_Load(object sender, EventArgs e)
{
this.Response.Clear();
this.Response.ContentType = "image/jpeg";
System.Drawing.Image OC = null;
string imageName = Request.QueryString["ID"];
if (Cache[imageName] != null)
{
OC = (System.Drawing.Image)Cache[imageName];
OC.Save(this.Response.OutputStream, ImageFormat.Jpeg);
OC.Dispose();
}
}
History
- 16th September, 2007 - Initial release
- 23rd September, 2007 - Added ASP.NET usage sample