Hi -
I want to create a Vertical bar depicting count on Y-axis and State/status of files in X-axis. Hovering/Drilling down/Clicking on each bar should show files names. The state of files would be updated every hour.
I have created the below json format to visualize the state of file, (we can modify json schema or add additional jsons):
{
"finaljson": [
{
"status": "stage1",
"feeds": [
"file1"
],
"count": 1
},
{
"status": "stage2",
"feeds": [
"file2",
"file3",
"file4",
"file8"
],
"count": 4
},
{
"status": "stage3",
"feeds": [],
"count": 0
},
{
"status": "stage4",
"feeds": [
"file5",
"file6",
"file7",
"file9",
"file10"
],
"count": 5
},
{
"status": "stage5",
"feeds": [
"file11",
"file12,
],
"count": 2
}
]
}
We are using Version: 6.4.2, I am unable to create the required visualization, any guidance would help.
Thanks,