Is there a way to set the widths of the columns in a datatable?
Currently I am doing:

data.addColumn('string', 'Name');
data.addColumn('string', 'E-Mail');
data.addColumn('string', 'Address');
data.addColumn('string', 'City');
data.addColumn('string', 'State');
data.addColumn('string', 'ZipCode');
data.addColumn('boolean', 'Active');

Would be nice to do something like:

data.addColumn('string', 'Name', 15);
data.addColumn('string', 'E-Mail', 25);
data.addColumn('string', 'Address', 25);
data.addColumn('string', 'City', 20);
data.addColumn('string', 'State', 5);
data.addColumn('string', 'ZipCode', 5);
data.addColumn('boolean', 'Active', 5)

Where the numbers are percents of the div container for the width of
the column.
--~--~---------~--~----~------------~-------~--~----~
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