I have a ASP.NET Pivot Table and in the cells of that table there are various values 1, 2, 3 or 4. Whichever value is selected turns the cell to one of four colours.
$(function () {
var colors = { 1: 'green', 2: 'orange', 3: 'red', 4: 'blue' };
$("td").css('background-color', function (index, value) {
var txt = $(this).text();
if (colors.hasOwnProperty(txt)) {
$(this).html(' ')
return colors[txt];
}
return value;
});
});
In basic theory this code works fine, however, what i would like to do is, instead of the entire table cell turning a certain colour i would like part of the table cell to turn into a certain colour in accordance to a single value from my database!
At present if there are 3 records in the one cell (lets say 3, 2, 4) then instead of the figures being seperate and the cell output being in 3 parts, red, orange and blue they add up (9) and no colour value is added at all.