ASP.NET Organizational Chart

I want to create an organization chart in ASP.NET. Does anyone have any recommendations for components to do this. Most third-party graphics packages do not handle organization charts. The chart should also draw from left to right rather than top to bottom as most organization charts do.

0


source to share


6 answers


It is not an ASP.NET component, but you can create a web service or dynamically transform JavaScript. Google Visualization API - Organization Chart .



I don't know if it has a left to right option.

+4


source


You can look at http://www.orgchartcomponent.com

It has a demo site: http://demo.orgchartcomponent.com



And you can download a demo version of the component for testing.

+1


source


The Chart4.NET Chart Control (ASP.NET and Desktop Control) has a bottom-up / left-to-right orientation, and so on.

Demo version of the diagram from left to right:

http://organization.unifosys.com/organization-chart-component-horizontal-orientation.aspx

+1


source


If you don't pay for third-party components then there are several available .. NET Charting is not too bad and I think Dundas has this functionality in an excellent set of charts. They both offer an estimate.

0


source


Instead of an org chart, how about just a tree? If so, it should be easy with the tree control. Here's another example at codeproject.com that shows an organization chart.

0


source


Maybe Microsoft Auto-Layout Graphs will fix your problem. I haven't used it yet, so .. no guarantees.

0


source







All Articles