1

I am trying to generate a networkgraph using highcharts and highcharts-angular. My task is to generate a network graph some thing like a sleeping tree graph as in the picture below. I am trying all the series options as in the Highcharts api docs . However, I am not able to achieve.

Tree from left to right

Whatever be the series option I tried, I am seeing the network graph as in this picture attached.

Is it possible to generate the networkgraph using highcharts as I require? If so, how can I do it? Below is the series data, I am using

[['Continents','Asia'],
 ['Continents','Europe'],
 ['Continents','Africa'],
 ['Africa','Congo'],
 ['Africa','Kenya'],
 ['Africa','Zimbabwe'],
 ['Europe','Sweden'],
 ['Sweden','Finland'],
 ['Asia','India'],
 ['Asia','China']]
Sreehari
  • 1,328
  • 11
  • 29

1 Answers1

1

The Organization chart seems more suitable for your need.

With the option inverted: false, the result looks like what you want.

Joffrey Schmitz
  • 2,393
  • 3
  • 19
  • 28
  • @Jeffrey Schmitz, I know that we can use organization for similar structure. But I want to know, If I can make networkgraph to be created in simar way. What I just want is, the continents node in the example has to be placed in the left most instead of center. – Sreehari May 03 '19 at 19:02