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
Firstly, thank you for this package. Unfortunately I am not fit enough in Perl to offer a pull request.
The font and font size are hardcoded. The values from the system configuration are not adopted.
my %TableParam; $TableParam{CellData}[0][0]{Font} = 'ProportionalBold'; $TableParam{CellData}[0][0]{FontSize} = 11; $TableParam{CellData}[0][0]{Align} = 'center'; $TableParam{CellData}[0][0]{Content} = $TextData[0]; VALUEROW: for my $RowCount ( 1 .. $#TextData ) { $TableParam{CellData}[$RowCount][0]{Font} = 'Proportional'; $TableParam{CellData}[$RowCount][0]{FontSize} = 8; $TableParam{CellData}[$RowCount][0]{Align} = 'center'; $TableParam{CellData}[$RowCount][0]{Content} = $TextData[$RowCount]; }
It would also be great if the table header and the table rows could also be individually predefined in the system configuration.
It would also be nice if the table could also be left- or right-aligned. This is also hardcoded.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Firstly, thank you for this package.
Unfortunately I am not fit enough in Perl to offer a pull request.
The font and font size are hardcoded. The values from the system configuration are not adopted.
It would also be great if the table header and the table rows could also be individually predefined in the system configuration.
It would also be nice if the table could also be left- or right-aligned. This is also hardcoded.
The text was updated successfully, but these errors were encountered: