Overview

Sunburst chart, known by multiple names such as ring chart and radial treemap, is used to visualize a hierarchical dataset. It shows hierarchy through a series of concentric rings, where each ring corresponds to a level in the hierarchy. Each ring is segmented proportionally to represent its constituent details.
The user can choose which property the object contains that describes the data to use, for example monArborescence.
So, when receiving the monArborescence following array of objects:
{
"payload": {
"monArborescence": {
"name": "nivo",
"flatten": false,
"children": [
{
"name": "viz",
"children": [
{
"name": "stack",
"children": [
{
"name": "cchart",
"loc": 183001
},
{
"name": "xAxis",
"loc": 121267
} // etc
]
}
]
}
]
}
}
}
the diagram is displayed.
If a new message arrives with values, then the diagram updates with the new values.