Here is the code snippet I am working with:
var json = jQuery.parseJSON(data);
console.log(json)
When I run this code, the output looks like this:
Object {sql: "SELECT venta.cliente_tipodoc,count(*) AS cantidad FROM venta venta", results: Array[1], dataForChart: Array[1], tableOrder: Array[2], chartOrder: Array[2]…}chartOrder: Array[2]0: "cantidad"1: "cliente_tipodoc"length: 2__proto__: Array[0]dataForChart: Array[1]encabezados: Array[2]grafica: "[[agrupamiento:[[atributo:cliente_tipodoc, tabla:venta]], dato:[conteo:1, texto:Cantidad], tipo:pie-chart]]"
My main goal is to access the values inside the "grafica" key in the JSON object. I attempted to do so using "json.grafica" but it only gives me this:
grafica:[[agrupamiento:[[atributo:cliente_tipodoc, tabla:venta]], dato:[conteo:1, texto:Cantidad], tipo:pie-chart]]
I specifically need to extract the value of "tipo" inside json.grafica
Thank you in advance