We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i tried this,not work $writer->writeSheetRow($sheet, "<span style='color:#ff0000'>Red Contents</span>Black Contents")
$writer->writeSheetRow($sheet, "<span style='color:#ff0000'>Red Contents</span>Black Contents")
The text was updated successfully, but these errors were encountered:
You need to send color option in an array. Below code will fill with 'RED' color to the 1st column and fill with 'GREEN' to the 2nd column
$writer->writeSheetRow($sheet, $rowData, $row_options = array(array('fill'=>'#FF0000'),array('fill'=>'#00FF00')));
Sorry, something went wrong.
No branches or pull requests
i tried this,not work
$writer->writeSheetRow($sheet, "<span style='color:#ff0000'>Red Contents</span>Black Contents")
The text was updated successfully, but these errors were encountered: