Google Chart API: trouble with rendering a XYLine graph
I'm trying to make an XYLine with the Google Chart API via the not-so-well-documented GChartWrapper libraries. Here's a portion of the code that is supposed to generate the graph: data = [] traffic_max = 0 date_minmax = [] #I have a number of timestamped readings in two series for site in sites: site_data = get_datapoints_for(site) ...