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
Today I tried to compile and found multiple errors regarding backgroundColorHex:
The argument type 'String' can't be assigned to the parameter type 'ExcelColor'.
CellStyle customCellStyle = CellStyle( backgroundColorHex: '#fce48e', bold: true, horizontalAlign: HorizontalAlign.Center);
The text was updated successfully, but these errors were encountered:
horizontalAlign doesn't work either
Sorry, something went wrong.
ignores first line
Today I tried to compile and found multiple errors regarding backgroundColorHex: The argument type 'String' can't be assigned to the parameter type 'ExcelColor'. CellStyle customCellStyle = CellStyle( backgroundColorHex: '#fce48e', bold: true, horizontalAlign: HorizontalAlign.Center);
ExcelColore.red
Hi,
Same happened to me. I fixed the errors by replacing the color literal strings with ExcelColor:
backgroundColorHex: '#FFE25C', --> ExcelColor.fromHexString('#FFE25C')
Regards
No branches or pull requests
Today I tried to compile and found multiple errors regarding backgroundColorHex:
The argument type 'String' can't be assigned to the parameter type 'ExcelColor'.
The text was updated successfully, but these errors were encountered: