Hi everyone,
There was a requirement from the user to generate a report (DOC format) using existing data from our records.
To fulfill this, we generated HTML code using Appian expression rules. The output of the rule is HTML, which we then passed to the Docs from HTML and CSS smart service.
The HTML we are generating includes the following code snippet to set the page orientation to landscape:
<style> @page { size: A3 landscape; margin: 20mm; } table, th, td { border: 1px solid black; border-collapse: collapse; } </style>
Discussion posts and replies are publicly visible
Missed one point earlier ,
Even after adding the above CSS style to the HTML code, the generated content is still not appearing in landscape mode.