Hi,
I am facing a problem when trying to add a style to my GWT
Vizualization Table . As I understand in javascript it can be done
like this

 var cssClassNames = { 'tableCell':'myStyle' '}'
 var options = {'showRowNumber': true, 'allowHtml': true,
'cssClassNames': cssClassNames};
 var data = new google.visualization.DataTable();
...
and then
 table.draw(data, options);

but when I try to do this in GWT ( java code) like this :

Options options = Options.create();
options.setOption("cssClassNames", "tableCell: myStyle'" );

it doesnt work?  Am I doing the right thing?? Is the the right way to
add style to a Vizualization Table in GWT? Please help?

Thanks in Advance

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