Demo7 – Style

Column->Created Cell

if ( cellData <= 30 ) {
	$(td).css({'background-color':'green','color':'#ffffff'});
}else if( cellData <= 45 ){
	$(td).css('background-color', 'yellow');
}else{
	$(td).css({'background-color':'red','color':'#ffffff'});
}