Does the error console give you any hints as to what might be going on? Also, if you could post a link to the working page, I could take a deeper look.
On Friday, March 8, 2013 6:04:39 PM UTC-5, Paul Loeb wrote: > > Still no dice > > > On Mar 8, 2013, at 2:45 PM, asgallant <[email protected]<javascript:>> > wrote: > > I see two typos that need to be fixed: > > tempData[value.date][pNames] = startingRegistrations; > > should be: > > tempData[value.date][pName] = startingRegistrations; > > ("pNames" change to "pName"), and > > var row = [tempDate[x].date]; > > should be: > > var row = [tempData[x].date]; > > ("tempDate" change to "tempData"). Give that a try and see if it works. > > On Friday, March 8, 2013 3:29:39 PM UTC-5, Paul Loeb wrote: >> >> Thanks for your quick reply! I think I see what you're getting at, but it >> isn't working exactly right. >> When I try implementing your solution and run console.log(tempData), it >> shows up empty {} >> >> pNames comes out correctly as ["Alpha", "Beta", "Gamma"] >> > > -- > You received this message because you are subscribed to a topic in the > Google Groups "Google Visualization API" group. > To unsubscribe from this topic, visit > https://groups.google.com/d/topic/google-visualization-api/F47qdbJlAR0/unsubscribe?hl=en > . > To unsubscribe from this group and all its topics, send an email to > [email protected] <javascript:>. > To post to this group, send email to > [email protected]<javascript:> > . > Visit this group at > http://groups.google.com/group/google-visualization-api?hl=en. > For more options, visit https://groups.google.com/groups/opt_out. > > > > > -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-visualization-api?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
