PC Review


Reply
Thread Tools Rate Thread

Displaying an Org Chart

 
 
Sahil Malik [MVP]
Guest
Posts: n/a
 
      26th Sep 2005
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


 
Reply With Quote
 
 
 
 
Rob Schieber
Guest
Posts: n/a
 
      26th Sep 2005
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
 
Reply With Quote
 
Sahil Malik [MVP]
Guest
Posts: n/a
 
      26th Sep 2005
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" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> 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



 
Reply With Quote
 
=?Utf-8?B?RG9uIEQ=?=
Guest
Posts: n/a
 
      26th Sep 2005
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(object sender, System.EventArgs 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.FromImage(chartImg);
Canvas.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
Canvas.CompositingQuality =
System.Drawing.Drawing2D.CompositingQuality.HighQuality;

// Paint the background
Canvas.FillRectangle(FillBrush, -1, -1, chartImg.Width + 1, chartImg.Height
+ 1);


//do your or chart generation here

Response.ContentType = "image/jpeg";
// put the image into the memory stream
chartImg.Save(Response.OutputStream,
System.Drawing.Imaging.ImageFormat.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
>
>
>

 
Reply With Quote
 
Willy Denoyette [MVP]
Guest
Posts: n/a
 
      26th Sep 2005
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" <(E-Mail Removed)> wrote in message
news:66F4DAA3-9A0A-4741-A5EE-(E-Mail Removed)...
> 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(object sender, System.EventArgs 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.FromImage(chartImg);
> Canvas.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
> Canvas.CompositingQuality =
> System.Drawing.Drawing2D.CompositingQuality.HighQuality;
>
> // Paint the background
> Canvas.FillRectangle(FillBrush, -1, -1, chartImg.Width + 1,
> chartImg.Height
> + 1);
>
>
> //do your or chart generation here
>
> Response.ContentType = "image/jpeg";
> // put the image into the memory stream
> chartImg.Save(Response.OutputStream,
> System.Drawing.Imaging.ImageFormat.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
>>
>>
>>



 
Reply With Quote
 
=?Utf-8?B?RG9uIEQ=?=
Guest
Posts: n/a
 
      27th Sep 2005
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" <(E-Mail Removed)> wrote in message
> news:66F4DAA3-9A0A-4741-A5EE-(E-Mail Removed)...
> > 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(object sender, System.EventArgs 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.FromImage(chartImg);
> > Canvas.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
> > Canvas.CompositingQuality =
> > System.Drawing.Drawing2D.CompositingQuality.HighQuality;
> >
> > // Paint the background
> > Canvas.FillRectangle(FillBrush, -1, -1, chartImg.Width + 1,
> > chartImg.Height
> > + 1);
> >
> >
> > //do your or chart generation here
> >
> > Response.ContentType = "image/jpeg";
> > // put the image into the memory stream
> > chartImg.Save(Response.OutputStream,
> > System.Drawing.Imaging.ImageFormat.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
> >>
> >>
> >>

>
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Displaying the mean in a bar chart nathanhutto Microsoft Excel Charting 1 14th Dec 2007 06:41 PM
Displaying Zero Values in a Chart ajames Microsoft Excel Misc 1 12th Apr 2006 05:53 PM
Org Chart Not Displaying =?Utf-8?B?YTE0NG1i?= Windows XP Internet Explorer 0 11th Apr 2006 03:09 PM
Chart is not displaying Namwar Microsoft Access Reports 0 17th Oct 2005 09:58 AM
Displaying an Org Chart Sahil Malik [MVP] Microsoft ASP .NET 5 27th Sep 2005 03:57 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:49 PM.