1

I'm creating graph and for this I need data in this form in javascript:

var currYear = [["2011-08-01",796.01], ["2011-08-02",510.5], ["2011-08-03",527.8], ["2011-08-04",308.48]]

Data is coming from JSON

var total_click = JSON.parse(<%=raw @report.to_json %>);
var i=0;
var graph_type = "";
var graph_typ = new Array();
while(i < total_click.length){
graph_typ.push("['"+total_click[i].report_date+"',"+total_click[i].clicks+"]");
i++;
}

Data which I get from this is below

['2012-03-19',48],['2012-03-20',14],['2012-03-21',934]

How do I get this format

[['2012-03-19',48],['2012-03-20',14],['2012-03-21',934]]
0

2 Answers 2

4

Instead of creating a string, push the arrays into an array:

var total_click = JSON.parse(<%=raw @report.to_json %>);
var graph_type = [];
for(var i = 0; i < total_click.length; i++){
  graph_type.push([ total_click[i].report_date, total_click[i].clicks ]);
}
Sign up to request clarification or add additional context in comments.

Comments

3
graph_typ.push("['"+total_click[i].report_date+"',"+total_click[i].clicks+"]");

is not the way you add an array into another one. Here you are building an array of strings.

while(i < total_click.length){
var arr = [];
arr.push(total_click[i].report_date);
arr.push(total_click[i].clicks);
graph_typ.push(arr);
i++;
}

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.