Hi Gauthier MAIROT,
Thanks for contacting Syncfusion Support.
No, the conditional formatting will consider all the value cells. If you would like to apply this to specific cells then kindly set CSS styles manually by using “queryCellInfo” event. Please refer the following code example and sample,
Code example:
|
queryCellInfo(args) {
if (
(args.cell as any).innerText != "Grand Total" &&
(args.cell as any).innerText > 10000 &&
args.cell.classList.contains("e-gtot")
) {
args.cell.classList.add("newStyle");
}
} |
Please let us know if you have concern.
Regards,
Saranya Sivan.