Guest User

Untitled

a guest
Dec 16th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.57 KB | None | 0 0
  1. var confignp = {
  2. container: "#OrganiseChart1",
  3. rootOrientation: 'NORTH', // NORTH || EAST || WEST || SOUTH
  4. hideRootNode: true,
  5. // levelSeparation: 30,
  6. siblingSeparation: 40,
  7. subTeeSeparation: 30,
  8.  
  9. connectors: {
  10. type: 'curve'
  11. },
  12. node: {
  13. HTMLclass: 'nodeExample1'
  14. }
  15. },
  16. root = {},
  17.  
  18. cto = {
  19. parent: root,
  20. text:{
  21. name: "Joe Linux",
  22. title: "Board member",
  23. contact: "email: we@aregreat.com"
  24. },
  25. stackChildren: true,
  26. HTMLid: "coo"
  27. },
  28. cbo = {
  29. parent: root,
  30. stackChildren: true,
  31. text:{
  32. name: "Linda May",
  33. title: "Board member",
  34. contact: "email: we@aregreat.com"
  35. },
  36. HTMLid: "cbo"
  37. },
  38. cdo = {
  39. parent: root,
  40. text:{
  41. name: "John Green",
  42. title: "Board member, CEO",
  43. contact: "email: we@aregreat.com"
  44. },
  45. HTMLid: "cdo"
  46. },
  47. cio = {
  48. parent: cto,
  49. text:{
  50. name: "Ron Blomquist",
  51. title: "Chief Information Security Officer",
  52. contact: "email: we@aregreat.com"
  53. },
  54. HTMLid: "cio"
  55. },
  56. ciso = {
  57. parent: cto,
  58. text:{
  59. name: "Michael Rubin",
  60. title: "Chief Innovation Officer",
  61. contact: "email: we@aregreat.com"
  62. },
  63. HTMLid: "ciso"
  64. },
  65. cio2 = {
  66. parent: cdo,
  67. text:{
  68. name: "Erica Reel",
  69. title: "Chief Customer Officer",
  70. contact: "email: we@aregreat.com"
  71. },
  72. link: {
  73. href: "www.google.com"
  74. },
  75. HTMLid: "cio2"
  76. },
  77. ciso2 = {
  78. parent: cbo,
  79. text:{
  80. name: "Alice Lopez",
  81. title: "Chief Communications Officer",
  82. contact: "email: we@aregreat.com"
  83. },
  84. HTMLid: "ciso2"
  85. },
  86. ciso3 = {
  87. parent: cbo,
  88. text:{
  89. name: "Mary Johnson",
  90. title: "Chief Brand Officer",
  91. contact: "email: we@aregreat.com"
  92. },
  93. HTMLid: "ciso2"
  94. },
  95. ciso4 = {
  96. parent: cbo,
  97. text:{
  98. name: "Kirk Douglas",
  99. title: "Chief Business Development Officer",
  100. contact: "email: we@aregreat.com"
  101. },
  102. HTMLid: "ciso2"
  103. }
  104.  
  105. var ALTERNATIVE = [
  106. confignp,
  107. root,
  108. cto,
  109. cbo,
  110. cdo,
  111. cio,
  112. ciso,
  113. cio2,
  114. ciso2,
  115. ciso3,
  116. ciso4
  117. ];
Add Comment
Please, Sign In to add comment