In my PHPExcel
library, I changed the color of hyper link using the below code
$link_style_array = array(
'font' => array(
'color' => array('rgb' => '0000FF'),
'underline' => 'single'
)
);
$sheet->getStyle("A1")->applyFromArray($link_style_array);
And it works perfect. But the text have a background color like the below image
I would like to remove the background color or make it white.
Is there any way to do the same? Any help could be appreciated