I'm using the Morris Bar Chart plugin. You can see an example here.
The correct data format to insert into the chart is the following:
data: [
    { y: '2006', a: 100, b: 90 },
    { y: '2007', a: 75,  b: 65 },
    { y: '2008', a: 50,  b: 40 },
    { y: '2009', a: 75,  b: 65 },
    { y: '2010', a: 50,  b: 40 },
    { y: '2011', a: 75,  b: 65 },
    { y: '2012', a: 100, b: 90 }
  ],
I want to fill that info but with ajax request to PHP.
$.ajax({
    url: 'getchart.php',
    success: function(content){
        console.log(content); // Native return
        var element = [];   
        var json    = JSON.parse(content);
        for(var i = 0; i <= json.length - 1; i++){
            element[i] = {y: json[i][0].month, a: json[i][0].total};
        }
        console.log(element);
    }
});
I've accomplish the request successfully but I do need to convert the json I get from ajax to the format that morris chart needs.
[[{"total":1,"Month":7,"description":"Started"},
{"total":1,"Month":6,"description":"Started"}],
[{"total":3,"Month":6,"description":"Started"}]] 
The code above is what the variable content output. The problem here is that one index contains 2 sub-indexes and the other index contains only one sub-index:
Index 1:
[{"total":1,"Month":7,"description":"Started"},
 {"total":1,"Month":6,"description":"Started"}],
And the second index only contains one sub-index
Index 2:
[{"total":3,"Month":6,"description":"Started"}]],
This happens because I'm pushing two different arrays into one in PHP.
$AN = $chart->chartAN(); // Apresentation and Negociation
$AC = $chart->chartAC(); // Accomplished
$final = array($AN, $AC);
echo json_encode($final);
And, btw, the output from both of functions is the same:
while($query->fetch()){     
  $rows[] = array("total" => $total, "month" => $month, "description" => $type);
}
Currently, the console.log(element) returns me:
[Object, Object];
    > 0: Object
        a: 1
        y: 7
    > 1: Object
        a: 3
        y: 6
My final result I would like it to be something like:
element: [
          { y: 'April', a: value_from_chartAN, b: value_from_chartAC },
          { y: 'May',   a: value_from_chartAN, b: value_from_chartAC },
         ],
EDIT: To clarify the question (because I know isn't that simple).
I would like my output to be:
element: [
              { y: month_from_database, a: value_from_chartAN, b: value_from_chartAC },
              { y: month_from_database, a: value_from_chartAN, b: value_from_chartAC },
             ],
Since value_from_chartAN or value_from_chartAC might be null, it must add the number 0.
If you look at the example of Morris: http://jsbin.com/uzosiq/258/embed?javascript,live
The year correspond to my Month, the blue bar to the value_from_chartAN and the gray bar to value_from_chartAC.
 
     
     
    