I have the following code which works just fine for an index view of users weight, but when i try and put the same data in Highcharts with [ ] it doesnt seem to like it.
I am trying to get all of the weigh_ins (the seperate table holding the users weight info, with columns, weight, created at, id and user_id) for a user, iterate through them and then select the weight from each one to display in a chart.this displays just the weight in float format in the index view but not in highcharts.
Any ideas?
<% @user.weigh_ins.each do |weight| %>
<td><%= weight.weight%></td>
<% end %>
cheers
below is the code for the chart, with the @users iteration near the bottom.
<script type="text/javascript">
$(function () {
var chart;
$(document).ready(function() {
chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
type: 'line',
marginRight: 130,
marginBottom: 40
},
title: {
text: 'Weight/KG',
x: -20 //center
},
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},
yAxis: {
title: {
text: 'Weight KG'
},
plotLines: [{
value: 0,
width: 1,
color: '#FF9900'
}]
},
tooltip: {
formatter: function() {
return '<b>'+ this.series.name +'</b><br/>'+
this.x +': '+ this.y +'kg';
}
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'top',
x: -10,
y: 100,
borderWidth: 0
},
series: [{
name: 'weight',
data: <% @user.weigh_ins.each do |weight| %>
[<%= weight.weight %>]
<% end %>
}]
});
});
});
</script>
<script src="../../js/highcharts.js"></script>
<script src="../../js/modules/exporting.js"></script>
<div id="container" style="min-width: 700px; height: 250px; margin: 10 auto"></div>
here is the source
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},
yAxis: {
title: {
text: 'Weight KG'
},
plotLines: [{
value: 0,
width: 1,
color: '#FF9900'
}]
},
tooltip: {
formatter: function() {
return '<b>'+ this.series.name +'</b><br/>'+
this.x +': '+ this.y +'kg';
}
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'top',
x: -10,
y: 100,
borderWidth: 0
},
series: [{
name: 'weight',
data: []
[46.0]]
[68.0]]
[67.0]]
[89.0]]
[70.0]
}]
});
});
});
</script>
so i managed to get it to work, and updating properly using...it joined the weight.weight iteration in an array with a ',' between each one so it rendered properly.
series: [{ name: 'weight', data: [ <% @user.weigh_ins.each do |weight| %> <%= "#{weight.weight}," %> <% end %> ]
<td>tag. Can this be a problem? – Sergio Tulentsev Jun 19 '12 at 15:07