There was an update last night. Instead of TableNumberFormat you should use NumberFormat. TableNumberFormat was deprecated and finally removed.
I posted on stackoverflow the explanation with an example: Why did my previously working google visualization charts stop working after Nov 26th 2013? <http://stackoverflow.com/a/20234491/1445460> So your code should look like this (change is in red): var formatter = new google.visualization.NumberFormat( {prefix: "$", negativeColor: 'red', negativeParens: true}); formatter.format(data, 1); On Wednesday, November 27, 2013 4:43:37 AM UTC-5, Raymond Chong wrote: > > I have a Bar Chart displaying properly. DataTableArray is just 2 columns > table > But the problem is the tooltips when mouse over, the number in pop up > shows "ABC 12345" > Desired display is "ACB $12,345" > > So I am adding the exact code I copied from the sample site > > var formatter = new google.visualization.TableNumberFormat( > {prefix: "$", negativeColor: 'red', negativeParens: true}); > formatter.format(data, 1); > > At first it works. However, after a few days, the Chart disappeared. > I found if I delete the above 3 lines, Chart reappears. Add back, > disappeared. > > Seems strange, what can be wrong ? 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.
