473,626 Members | 3,369 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Displaying an Org Chart

I am looking for suggestions on a software that can display an Org. Chart in
a web based environment. The server runs .NET (2.0), and I have to add that
the org chart must work on Macintoshes/linux/netscape etc. So we cannot have
any sort of ActiveX Control or anything like that.

What do you recommend :)

Sahil
Nov 17 '05 #1
5 3025
Sahil Malik [MVP] wrote:
I am looking for suggestions on a software that can display an Org. Chart in
a web based environment. The server runs .NET (2.0), and I have to add that
the org chart must work on Macintoshes/linux/netscape etc. So we cannot have
any sort of ActiveX Control or anything like that.

What do you recommend :)

Sahil


Hi Sahil,

Although I haven't used their Org Chart Software specifically, I know
that Dundas Software has them, and their Standard charting Software has
been great to work with.

http://www.dundas.com/products/diagr...p=Relationship

--
Rob Schieber
Nov 17 '05 #2
Thanks Rob. Well one of the biggest issues with any OTS product is .. THEY
LOOK UGLY as hell. Dundas chart is like the least worse out of the bunch,
but still ugly lookin'. :(
--

- Sahil Malik [MVP]
ADO.NET 2.0 book -
http://codebetter.com/blogs/sahil.ma.../13/63199.aspx
----------------------------------------------------------------------------
---------------

"Rob Schieber" <sc******@hotma il.com> wrote in message
news:eM******** ******@TK2MSFTN GP09.phx.gbl...
Sahil Malik [MVP] wrote:
I am looking for suggestions on a software that can display an Org. Chart in a web based environment. The server runs .NET (2.0), and I have to add that the org chart must work on Macintoshes/linux/netscape etc. So we cannot have any sort of ActiveX Control or anything like that.

What do you recommend :)

Sahil
Hi Sahil,

Although I haven't used their Org Chart Software specifically, I know
that Dundas Software has them, and their Standard charting Software has
been great to work with.

http://www.dundas.com/products/diagr...p=Relationship
--
Rob Schieber

Nov 17 '05 #3
You could do it by generating an image. In the page that needs the org chart
add:
<img src="myOrgChart .aspx">

myOrgChart.aspx would contain something like:

private void Page_Load(objec t sender, System.EventArg s e)
{
//make a image to draw on
System.Drawing. Bitmap chartImg = new Bitmap(400, 400);
// Gen a graphics object to write upon
Graphics Canvas = System.Drawing. Graphics.FromIm age(chartImg);
Canvas.Smoothin gMode = System.Drawing. Drawing2D.Smoot hingMode.HighQu ality;
Canvas.Composit ingQuality =
System.Drawing. Drawing2D.Compo sitingQuality.H ighQuality;

// Paint the background
Canvas.FillRect angle(FillBrush , -1, -1, chartImg.Width + 1, chartImg.Height
+ 1);
//do your or chart generation here

Response.Conten tType = "image/jpeg";
// put the image into the memory stream
chartImg.Save(R esponse.OutputS tream,
System.Drawing. Imaging.ImageFo rmat.Jpeg);
Response.End();
}

Hope this helps,
--
Don DenUyl
Diamond Systems
"Sahil Malik [MVP]" wrote:
I am looking for suggestions on a software that can display an Org. Chart in
a web based environment. The server runs .NET (2.0), and I have to add that
the org chart must work on Macintoshes/linux/netscape etc. So we cannot have
any sort of ActiveX Control or anything like that.

What do you recommend :)

Sahil

Nov 17 '05 #4
From the v2.0 System.Drawing namespace docs...
Caution
Classes within the System.Drawing namespace are not supported for use within
a Windows or ASP.NET service. Attempting to use these classes from within
one of these application types may produce unexpected problems, such as
diminished service performance and run-time exceptions.
, note that this caution is not included in the v1.x docs, though it is also
valid for v1.x. You should never use this namespace in asp.net

Willy.

"Don D" <Do**@discussio ns.microsoft.co m> wrote in message
news:66******** *************** ***********@mic rosoft.com...
You could do it by generating an image. In the page that needs the org
chart
add:
<img src="myOrgChart .aspx">

myOrgChart.aspx would contain something like:

private void Page_Load(objec t sender, System.EventArg s e)
{
//make a image to draw on
System.Drawing. Bitmap chartImg = new Bitmap(400, 400);
// Gen a graphics object to write upon
Graphics Canvas = System.Drawing. Graphics.FromIm age(chartImg);
Canvas.Smoothin gMode = System.Drawing. Drawing2D.Smoot hingMode.HighQu ality;
Canvas.Composit ingQuality =
System.Drawing. Drawing2D.Compo sitingQuality.H ighQuality;

// Paint the background
Canvas.FillRect angle(FillBrush , -1, -1, chartImg.Width + 1,
chartImg.Height
+ 1);
//do your or chart generation here

Response.Conten tType = "image/jpeg";
// put the image into the memory stream
chartImg.Save(R esponse.OutputS tream,
System.Drawing. Imaging.ImageFo rmat.Jpeg);
Response.End();
}

Hope this helps,
--
Don DenUyl
Diamond Systems
"Sahil Malik [MVP]" wrote:
I am looking for suggestions on a software that can display an Org. Chart
in
a web based environment. The server runs .NET (2.0), and I have to add
that
the org chart must work on Macintoshes/linux/netscape etc. So we cannot
have
any sort of ActiveX Control or anything like that.

What do you recommend :)

Sahil

Nov 17 '05 #5
Thanks for the info.
--
Don DenUyl
Diamond Systems
"Willy Denoyette [MVP]" wrote:
From the v2.0 System.Drawing namespace docs...
Caution
Classes within the System.Drawing namespace are not supported for use within
a Windows or ASP.NET service. Attempting to use these classes from within
one of these application types may produce unexpected problems, such as
diminished service performance and run-time exceptions.
, note that this caution is not included in the v1.x docs, though it is also
valid for v1.x. You should never use this namespace in asp.net

Willy.

"Don D" <Do**@discussio ns.microsoft.co m> wrote in message
news:66******** *************** ***********@mic rosoft.com...
You could do it by generating an image. In the page that needs the org
chart
add:
<img src="myOrgChart .aspx">

myOrgChart.aspx would contain something like:

private void Page_Load(objec t sender, System.EventArg s e)
{
//make a image to draw on
System.Drawing. Bitmap chartImg = new Bitmap(400, 400);
// Gen a graphics object to write upon
Graphics Canvas = System.Drawing. Graphics.FromIm age(chartImg);
Canvas.Smoothin gMode = System.Drawing. Drawing2D.Smoot hingMode.HighQu ality;
Canvas.Composit ingQuality =
System.Drawing. Drawing2D.Compo sitingQuality.H ighQuality;

// Paint the background
Canvas.FillRect angle(FillBrush , -1, -1, chartImg.Width + 1,
chartImg.Height
+ 1);
//do your or chart generation here

Response.Conten tType = "image/jpeg";
// put the image into the memory stream
chartImg.Save(R esponse.OutputS tream,
System.Drawing. Imaging.ImageFo rmat.Jpeg);
Response.End();
}

Hope this helps,
--
Don DenUyl
Diamond Systems
"Sahil Malik [MVP]" wrote:
I am looking for suggestions on a software that can display an Org. Chart
in
a web based environment. The server runs .NET (2.0), and I have to add
that
the org chart must work on Macintoshes/linux/netscape etc. So we cannot
have
any sort of ActiveX Control or anything like that.

What do you recommend :)

Sahil


Nov 17 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
13873
by: Moth | last post by:
I have a PlotPanel class that extends JPanel which I have used previously to display charts in swing guis. I now want to display a graph in a jsp page so I was going to generate the graph and then save it to a jpeg and then display it in the page. Is there anyway to create an Image from a JPanel without actually displaying it in a JFrame first? Can anyone suggest a better way to create a chart image for servlet/jsp?
2
1801
by: Jane | last post by:
Hello, I tried to find some components I can use to dynamically generate chart or graph from database in ASP. It seems to me that only some other companies have software on this but Microsoft doesn't have any of them. Am I wrong? Thanks for your help. Jane
0
3842
by: Stan | last post by:
In the old days of VB6, an Excel chart image could be pasted into a picture box with Clipboard using the following commands. xlApp.ActiveChart.ChartArea.Copy Picture1.Picture = Clipboard.GetData() I having problems doing this in VB.net? I tried the code shown below, but it does not work. Its a modified version
4
5714
by: Andy Davis | last post by:
I have developed a number of reports that are based on parameter queries where the user enters criteria such as a date range and a sales rep say. I want to be able to show a graphical picture in the form of a bar chart based on the data within the report. Can I do this as when I have tried to insert a chart on the report it displays an error saying that it doeds not recognise the parameter criteria. Am I right to assume that maybe a chart...
2
6393
by: JT | last post by:
Hi, I've read (and tried) the article "How To Automate Microsoft Excel from Microsoft Visual C# .NET" (available at http://support.microsoft.com/default.aspx?kbid=302084). This opens up Excel, fills in a spreadsheet with numbers, and creates a chart in the spreadsheet from the data. Is there a way to do that, but insted of showing the chart in Excel, never have the Excel window show up and just show the excel chart within my
2
3399
by: mrwoopey | last post by:
Hi, I have a web based OLAP cube (based on the SQL 2000 resource kit version) and I need to know how to display it in a chart (web based). I know that there are 3rd party tools but I need a cheaper way to do this. Please post any code or links. You help is greatly appreciated! Thanks,
0
864
by: Panther240 | last post by:
I am displaying a Pie Chart in a browser.I am coding using C# in ASP.net.I am using System.Drawing and System.Drawing.Imaging. I had selected Response.ContentType = 'Image/jpeg" I have other controls in the page like Text Controls which do not get displayed if I select Response.ContentType = 'Image/jpeg" I want to dispaly Text controls in a form as well as this Pie chart. What should I do to overcome this? Thanks
5
1461
by: Sahil Malik [MVP] | last post by:
I am looking for suggestions on a software that can display an Org. Chart in a web based environment. The server runs .NET (2.0), and I have to add that the org chart must work on Macintoshes/linux/netscape etc. So we cannot have any sort of ActiveX Control or anything like that. What do you recommend :) Sahil
1
4081
by: johnVarma | last post by:
Hi All, Iam facing a problem with bar chart using coldFusion. if there is only one <cfchartseries> tag then the seriesLabel attribute is not displaying instead of that the items of the cfchartdata are displaying. if there are more then one <cfchartseries> then the seriesLabel specified is displaying properly. Please look at the code and its corresponding bar chart attached . Code -1 and BarChart1 :
0
8196
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8705
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8637
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8364
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
6125
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5574
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4197
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2625
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1808
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.