Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to convert json data into flow chart

I am trying to make a flow chart out kind of diagram from the below JSON data. There will be no condition

var a = [
            {
            "selector": "mark",
            "color": "#1b1f23"
        }
    ,
        {
            "selector": "legend",
            "color": "inherit"
        }
    ,

        {
            "selector": "::-webkit-input-placeholder",
            "color": "inherit"
        }
    ,

        {
            "selector": "body",
            "color": "#24292e"
        }

];

I am not getting any free source to do the same . Please help ..

The output should look like this :

this

like image 600
Pritiranjan Mishra Avatar asked Sep 05 '25 02:09

Pritiranjan Mishra


1 Answers

while I'm working on RESTful API I found this chrome extension and it was helpful and it can convert the JSON Object response in the browser to a flow chart by choosing the chart tab in the browser
tab chart

here where you can download it:

JSON Viewer Pro

like image 186
Anas Avatar answered Sep 08 '25 01:09

Anas