Chartjs-How to use output of JSON.parse() as a input of HTML charts' data field?

1👍

you could use create another object using data of this object, that should be just a regular json

EX:

var charData = {};
Object.keys(actual_JSON).forEach((key) => {
charData[key] = actual_JSON[key]
})

try use charData

Leave a comment