I'm incorporating Highcharts into my Rails 3/Ruby 1.8.7 project, using Railscast episode 223 as a starting point.
I'm trying to chart a user's body weight over the previous four weeks. There are some days when a user may not enter their weight and I want the chart to skip those dates.
I tried using the answer to this Stackoverflow question:
Highcharts - Rails array includes empty date entries
but I'm having the same trouble mentioned by the OP in that weight values are being assigned to dates without entries. In short, a date without a weight is still being assigned to the array with the next weight value found.
Here's the code from my chart's series option:
series: [{
name: "Daily Weight",
pointInterval: <%= 1.day * 1000 %>,
pointStart: <%= 4.weeks.ago.to_i * 1000 %>,
data: <%= (4.weeks.ago.to_date..Date.today).map { |date| Weight.weight_on(date, current_user.id).to_f}.reject(&:zero?).inspect %>
}]
And here's weight_on function from the Weight model:
def self.weight_on(date, user_id)
weight = Weight.find_by_entry_date_and_user_id(date, user_id)
unless weight.nil?
return weight.weight_entry
end
end
It looks like what's happening is as the date/weight array is being built the date is being held until a weight value is returned. The date and the weight (which doesn't correspond to the date in the array) are then added to the array before iterating to the next date.
How do I reject the date too? If no weight value is found for that date, how do I skip that date, ensuring it does not get added to the array, and move on to the next date?
Thanks for your help!