With the JSON string provided below:
{cols:[{"id":"t","label":"Title","type":"string"},{"id":"l","label":"Avg ","type":"string"},{"id":"lb","label":"High","type":"string"},{"id":"lo","label":"Low","type":"string"}],rows:[{"c":[{"v":"Change navigation"},{"v":5.6666666666667},{"v":"10"},{"v":"1"}]},{"c":[{"v":"Executive leadership"},{"v":6.0666666666667},{"v":"7"},{"v":"3"}]},{"c":[{"v":"Business ownership"},{"v":5.8095238095238},{"v":"10"},{"v":"2"}]},{"c":[{"v":"Change enablement"},{"v":6.4285714285714},{"v":"9"},{"v":"5"}]}]}
How do I achieve something like this?
['Change navigation=6.5333333333333','Executive leadership=6.0666666666667',
'Business ownership=5.8095238095238','Change enablement=6.4285714285714']
using JavaScript
I received a JSON object as a response from AJAX. Now, I am attempting to create an image chart using it. I used `JSON.stringify` to convert the object, but I am unsure of how to format it for the charts to understand.