I’m sure there’s a simple way to do this, but I have had no luck trying to highlight all cells in my table chart when the string “Pending” is contained within the cell.
Here is what I have tried so far:
1) ColorFormat – using the addRange option and value of “Pending, Pending, red, yellow”
2) jQuery + CSS code in the CEWP after all AJAX calls are done
<script type="text/javascript">
$(document).ajaxStop(function(){
$(".google-visualization-table-td:contains('Pending')").css("color", "red");
});
</script>
None of the above methods works. What might be the recommended approach?
Thanks for your help!