Closed (duplicate)
Project:
Google Chart Tools
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
4 Jun 2012 at 23:49 UTC
Updated:
12 Aug 2012 at 05:46 UTC
Found an issue where the data outputted by the charts wan't the same as what I was entering.
google_chart_tools.js - line 52
row[j] = parseInt(settings.chart[chartId].rows[j][i]);
should be
row[j] = parseInt(settings.chart[chartId].rows[i][j]);
Comments
Comment #1
jfraser commentedAfter further investigation my code broke the examples provided by the module.
Further debug I could get both working with the following code.
Basically if the header length = the rows length it would cause data to be mixed in the charts.
Comment #2
konforti commentedThis might be duplicates http://drupal.org/node/1677138.
Can you please check to confirm that the fix there, solved this one as well.
If not I'll need some more info to how to duplicate this issue, like a set of data which cause it happens.
Thanks.
Comment #3
konforti commented