Hello, I am generating an Excel with PHPSpreadSheet but I cannot get the cell to be generated with vertical borders
$bordes = [
'borders' => array(
'outline' => array(
'borderStyle' => \PhpOffice\PhpSpreadsheet\Style\Border::BORDER_THIN,
'color' => array('argb' => '000000'),
),
),
];
When I generate it this way the format it applies to the cell is this
When I would like only the verticals to be painted, thanks in advance
I already found the error, I'll leave it here if it helps someone on occasion
You had to place vertical as a parameter, everything comes in the documentation of PHPSpreadSheet