Could someone show me the code to put a filter on the first row of the
column table. In Google spreadsheet Gadget I can tag the option on/off
for 'Show Filter'...but I am unable to find the code:


function drawVisualization() {
  // Create and populate the data table.
  var data = google.visualization.arrayToDataTable([
    ['Name', 'Height', 'Smokes'],
    ['Tong Ning mu', 174, true],
    ['Huang Ang fa', 523, false],
    ['Teng nu', 86, true]
  ]);

  // Create and draw the visualization.
  visualization = new
google.visualization.Table(document.getElementById('table'));
  visualization.draw(data, null);
}

-- 
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