Issue
Expecting more setting option. But its not displaying.
Solution
Sorry for the very late answer. The problem was with bootstrap. The more settings are not displayed because in bootstrap (v4) a specific CSS is applied.
@page {
size: A4;
}
Due to this the more settings are not displayed.
Solution:-
@page {
size: auto;
}
Write it in your CSS file to override it. Then it worked!!!
Answered By - Pavan Srivatsav

0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.