Hi
function addFootr not works correctly in Firefox.
here is a new working version

--------------------------------------
      function addFooter(){
         if (document.getElementById('google-visualization-table-
footer')) return
         var tables=document.getElementsByTagName('TABLE');
         for (i=0; i<tables.length; i++)
            if (tables[i].className=='google-visualization-table-
table'){
               var r=tables[i].insertRow(tables[i].rows.length);
               r.id='google-visualization-table-footer'
               var c;
               r.className='google-visualization-table-tr-head';
               for (j=0; j<footer.length; j++){
                 c=r.insertCell(j);
                 c.className='google-visualization-table-th'
                 c.innerHTML=footer[j][0]
                 c.colSpan=footer[j][1]
               }
             }
      }

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

Reply via email to