Hello,
It is achieved with conditional formatting.
When I display my table in google charts it changes my true and false to ticks and crosses, this means that it is recognised as boolean.
Is there a way I can apply a formatter to these values to match the behaviour above. I have tried this:
var boolFormat = new google.visualization.ColorFormat();
boolFormat.addRange(false, "", 'black', '#ff8787');boolFormat.addRange(true, "", 'black', '#98d381');boolFormat.format(data, 3);google.visualization.events.addListener(Table, 'ready',function () {
$TableTarget.find('.google-visualization-table-td-bool:contains("✗")').css('color', 'red');
$TableTarget.find('.google-visualization-table-td-bool:contains("✔")').css('color', 'green');
});