dabeng / OrgChart

It's a simple and direct organization chart plugin. Anytime you want a tree-like chart, you can turn to OrgChart.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Another way to show the chart using pure DOM and CSS

tobyee opened this issue · comments

Cool chart! It makes use of nested <ul> . Maybe this is the new feature for next version of OrgChart.

Thanks a lot for @tobyee 's advice, we have provided ul datasource from version 0.9.9

Hello, can you generate a static, unable to click and flex architecture? How do

commented

How to add Content in

    as source Method , We just have Name in
  • like Name / Production Manager

How to can I install this js in my laravel project?

Refer to
http://thecodeplayer.com/walkthrough/css3-family-tree

Great work!!, broken down the big problem into small piece of solution, I did some updates, Some how I managed to add/append dynamic data to multiple level, but the only problem I'm facing is dynamic width of the structure, it breaks down to every level when the tree overflows parent element.

Any suggestion or Solution?

@AbhishekGNG
These is a very simple solution, change li element from float to table-cell

.tree li {
    /* float: left; (remove this)*/
   display: table-cell;
   /* other properties*/
}