Hi,
i need a stacked column chart generated by this json file:
{
"Device1": [
{
"CountOption1": 1,
"CountOption2": 0,
"CountOption3": 1,
"CountOption4": 0,
"CountOption5": 0,
"CountOption6": 0
}
],
"Device2": [
{
"CountOption1": 4,
"CountOption2": 5,
"CountOption3": 1,
"CountOption4": 0,
"CountOption5": 1,
"CountOption6": 0
}
]
}
I struggle how to dynamic convert “Devices X” in cancasjs required format.
Thanks