I am facing issues while implementing multiple formaters on the table
chart in the example
http://code.google.com/apis/ajax/playground/?type=visualization#color_formatter
In my sample code listed below, It seems like the "formatter1"
overrides "formatter"
as the text color is no longer white or red or even black but its all
blue because of the hyperlink.
var formatter = new google.visualization.TableColorFormat();
formatter.addRange(-20000, 0, 'white', 'orange');
formatter.addRange(20000, null, 'red', '#33ff33');
formatter.format(data, 1); // Apply formatter to second column
var formatter1 = new google.visualization.PatternFormat('<a
href="{0}">{1}</a>');
formatter1.format(data, [0,1],1);
You may copy this code above at line number line#23 of
http://code.google.com/apis/ajax/playground/?type=visualization#color_formatter
and try to run it in playground to see the result that I see.
What do I need to do in order to retain the text color that I want
from "formatter"