Hey,
I tested to set the property enableEvents to true for image Charts in
the code playground and i get a blue rec around my chart.

function drawVisualization() {
  // Create and populate the data table.
  var data = new google.visualization.DataTable();
  data.addColumn('string', 'Task');
  data.addColumn('number', 'Hours per Day');
  data.addRows(5);
  data.setValue(0, 0, 'Work');
  data.setValue(0, 1, 11);
  data.setValue(1, 0, 'Eat');
  data.setValue(1, 1, 2);
  data.setValue(2, 0, 'Commute');
  data.setValue(2, 1, 2);
  data.setValue(3, 0, 'Watch TV');
  data.setValue(3, 1, 2);
  data.setValue(4, 0, 'Sleep');
  data.setValue(4, 1, 7);

  // Create and draw the visualization.
  new
google.visualization.ImagePieChart(document.getElementById('visualization')).
    draw(data, {enableEvents:true});
}

Just added EnableEvents:true
This is ok with IE 8 or Chrome but I have a blue rec with Firefox
3.6.6
check this to see the issue : 
http://www.speedyshare.com/files/23268593/ffbugchart.JPG
I'm not sure it's a bug yet so I want to know if someone else get that
or how I can hide this rec.
Jeremy.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-visualization-api?hl=en.

Reply via email to