I cannot figure out how to apply background color to the cell in OpenTBS.
I've tried Word's syntax but it did not work.
[row.cell.val][row.cell.bg;att=w:shd#w:fill]
Code in PHP (simplified)
$rs = [
// ...
'cell' => [
'val' => 5,
'bg' => 'efefef',
],
// ...
];
$TBS->MergeBlock('row', $rs);
I looked inside XML body of excel document, but could not understand what tags and attributes define the color of the cell.
Can anyone help me?