Login to follow
Advanced Data Visualization

Advanced Data Visualization (ODC)

Stable version 0.1.1 (Compatible with ODC)
Uploaded on 13 August 2025 by EONE TECHNOLOGIES PRIVATE LIMITED
Advanced Data Visualization

Advanced Data Visualization (ODC)

Documentation
0.1.1

Structures:

A. Gantt Chart

[

  {

    "id": "1",

    "name": "Project Kickoff",

    "start": "2025-08-01",

    "end": "2025-08-05",

    "progress": 100

  },

  {

    "id": "2",

    "name": "Development",

    "start": "2025-08-06",

    "end": "2025-08-20",

    "progress": 45

  }

]


B. Sankey Diagram

[

  {

    "from": "Oil",

    "to": "Transport",

    "value": 10

  },

  {

    "from": "Oil",

    "to": "Industry",

    "value": 5

  },

  {

    "from": "Coal",

    "to": "Industry",

    "value": 15

  },

  {

    "from": "Renewables",

    "to": "Electricity",

    "value": 12

  }

]


C. Chord Diagram

{

  "labels": [

    "A",

    "B",

    "C",

    "D"

  ],

  "matrix": [

    [

      0,

      2,

      3,

      4

    ],

    [

      2,

      0,

      5,

      0

    ],

    [

      3,

      5,

      0,

      1

    ],

    [

      4,

      0,

      1,

      0

    ]

  ]

}


D. Heatmap

[

  {

    "x": "Mon",

    "y": "Morning",

    "value": 12

  },

  {

    "x": "Mon",

    "y": "Afternoon",

    "value": 20

  },

  {

    "x": "Mon",

    "y": "Evening",

    "value": 8

  },

  {

    "x": "Tue",

    "y": "Morning",

    "value": 15

  },

  {

    "x": "Tue",

    "y": "Afternoon",

    "value": 25

  },

  {

    "x": "Tue",

    "y": "Evening",

    "value": 10

  }

]


E. Force-Directed Graph

{

  "nodes": [

    {

      "name": "Node1",

      "value": 10

    },

    {

      "name": "Node2",

      "value": 20

    }

  ],

  "links": [

    {

      "source": "Node1",

      "target": "Node2"

    }

  ]

}


F. Sunburst Chart

{

  "name": "Root",

  "children": [

    {

      "name": "Category A",

      "children": [

        {

          "name": "Sub A1",

          "value": 10

        },

        {

          "name": "Sub A2",

          "value": 20

        }

      ]

    },

    {

      "name": "Category B",

      "children": [

        {

          "name": "Sub B1",

          "value": 15

        }

      ]

    }

  ]

}


G. Treemap / Circle Packing

[

  {

    "name": "Category A",

    "value": 10

  },

  {

    "name": "Category B",

    "value": 20,

    "children": [

      {

        "name": "Sub B1",

        "value": 8

      },

      {

        "name": "Sub B2",

        "value": 12

      }

    ]

  }

]