Question
1
Replies
201
Views
Posted: January 20, 2020
Last activity: January 20, 2020
PDF styling(Rounded corners are not coming
Hi,
We have a requirement to show the rounded corners headers in the PDF.
I'm using a paragraph rule as the source to PDF, (using pxcreatePDF).
In the Pega UI, I can view the round corners, however in the PDF generated ...i cannot see the rounded corners..they are coming as rectangles.
We are using Pega 8.2.1.
Can anyone please help with this.
***Edited by Moderator: Lochan to update platform capability tags***
Hi ,
You need to include css styles for rounded corners in the HTML rule .PD4ML wont allow the application skin to render in the pdf
Can include below style in the HTML rule .
<style>
.(header class name){
border - radius : 25px;
border: 1px solid black;
}
</style>