tags:

views:

19

answers:

1

Hi, i'm using google visulization API to build a line chart grapgh. it works fine on FF and Chrome but i'm having problems on IE7: the problem is that the scailing of the x-axis (string) and y-axis (integer) is all wrong. both axis have the same values for some reason, but naturally those valuse are wrong.

my code is the following one:

var data = new google.visualization.DataTable();
  data.addColumn('string', 'Date');
  data.addColumn('number', 'ביצועים ביחס לחברים');
    data.addColumn('number', 'ניחושים נכונים');
  data.addColumn('number', 'טעויות');
  data.addColumn('number', 'טוקבקים');
  data.addColumn('number', 'היסוסים');
  var n = userRightGuessArray.length;
  data.addRows(userRightGuessArray.length);
  data.setCell(0, 0, 'לא שיחקתי אז');
  data.setCell(0, 1, 0);
  data.setCell(0, 2, 0);
  data.setCell(0, 3, 0);
  data.setCell(0, 4, 0);
  data.setCell(0, 5, 0);
  for(var t = 1 ; t

thank you for your help, Gili

A: 

Are you sure that Google Visualization API can handle foreign characters for Dates and numbers? Also, try putting double quotes around the date information.

sasper