Hi @acandan ,
You will probably need to do 2 custom CSS classes for this, one to remove the bold from all rows, and another to do font bold…
It would be something like this on the CSS (…\webapps\YOURAPP\apq-c3-custom\css\custom-style.css):
/* Font Bold */
.handsontable td.font-bold {
font-weight: bold !important;
}
/* Font normal */
.handsontable td.font-normal {
font-weight: normal !important;
}
You apply the font-bold on the specific row you want on the rowFormat options, and the font-normal to all other rows, using “”.
Similar case can be seen here:
hope this helps!