You need to set the "allowHtml" option in the table's options, not when 
drawing the dashboard.  Try with this:

var table = new google.visualization.ChartWrapper({
    chartType: 'Table',
    containerId: 'chart2',
    options: {
        width: '1330px',
  height: 350,
        allowHtml: true
    }
});

On Friday, May 10, 2013 1:28:18 PM UTC-4, ultratorrent wrote:
>
> Like this? but no work, guide me, please
>
> var table = new google.visualization.ChartWrapper({
>     chartType: 'Table',
>     containerId: 'chart2',
>     options: {
>       width: '1330px',
>   height: 350
>     }
>   });
>
>         var dashboard = new 
> google.visualization.Dashboard(document.getElementById('dash_div'));
>         dashboard.bind([SemesterFilter], [SubjectFilter]);
>         dashboard.bind([SubjectFilter], [CategoryFilter]);
>         dashboard.bind([CategoryFilter], [chart,table]);
> var formatter = new google.visualization.ColorFormat();
> formatter.addRange(0, 60, 'white', 'orange');
> formatter.addRange(60, null, 'red', '#33ff33');
> formatter.format(data, 3);
> formatter.format(data, 4);
> formatter.format(data, 5);
> formatter.format(data, 6);
>         dashboard.draw(data, {allowHtml: true, showRowNumber: true});
>

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


Reply via email to