You need to format each data column individually.  Assuming you want all of 
your columns to be formatted the same, you can call formatter.format(data, 
<column index>); for every column you need to format, eg:

// format all data series in the data table
for (var i = 1; i < data.getNumberOfColumns(); i++) {
    formatter.format(data, i);
}

On Monday, July 8, 2013 3:35:53 AM UTC-4, chartuser wrote:
>
> Hi,
>
> Kindly let me know how to add comma in tool tip for combo chart for all 
> column. 
>
> if i add formatter.format(data, 1); applies only to the 1 column. let me 
> know how to add comma to all the column for the integer value.
>
> thanks.
>

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to