Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 %> ]

share|improve this question
What exactly is the problem here? – Sergio Tulentsev Jun 19 '12 at 14:38
I am trying to add the data this iteration produces to a highcharts line chart, but the chart doesnt render ( and yep i have got the correct configuration for the chart, so when a simple array with integers is parsed it renders nicely) so im not sure what to try? – dodgerogers747 Jun 19 '12 at 14:46
But you're rendering numbers inside of <td> tag. Can this be a problem? – Sergio Tulentsev Jun 19 '12 at 15:07
the code used in that example is for the index view, for highcharts the <td> tags have been removed and replaced with square brackets. so the code for Highcharts looks like this: <% @user.weigh_ins.each do |weight| %> [<%= weight.weight %>] <% end %> – dodgerogers747 Jun 19 '12 at 15:47
What's the actual resulting code? – Sergio Tulentsev Jun 19 '12 at 15:47
show 4 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.