Show / Hide Table of Contents

Import

BALKAN OrgChart JS supports importing from CSV, XML and JSON files:

CSV

 
    
    menu: {
        importCSV: { 
            text: "Import CSV",
            icon: OrgChart.icon.csv(24,24, '#7A7A7A'),
            onClick: function(){ chart.importCSV(); }
        }
    },
    

XML

 
    
    menu: {
        importXML: { 
            text: "Import XML",
            icon: OrgChart.icon.xml(24,24, '#7A7A7A'),
            onClick: function(){ chart.importXML(); }
            }
    },
    

JSON

 
    
      menu: {
          importXML: { 
              text: "Import XML",
              icon: OrgChart.icon.xml(24,24, '#7A7A7A'),
              onClick: function(){ chart.importXML(); }
          },
      },
    

This is a demo for importing. (You could export, edit the file and then import it agian.)