Working with PrizmDoc > Administering PrizmDoc > System Configuration > Configuring the PrizmDoc Server > Legacy Configuration > Customizing Excel Pagination Settings for PrizmDoc Server |
PrizmDoc Server support two basic pagination modes for rendering Excel documents:
In non-paginated mode, each Excel sheet, irrespective of its size, is rendered onto a single page. If the number of columns and/or rows is large, then this might result in very small and unreadable output. In paginated mode, each Excel sheet is divided into a number of pages, such that each page fits into a specific size.
To customize Excel pagination settings, edit the central configuration file. Modify the following parameters to adjust pagination settings:
Example |
Copy Code
|
---|---|
fileTypes.excel.pagination.enabled: true fileTypes.excel.pagination.dimensions.minWidth: 11.0in fileTypes.excel.pagination.dimensions.maxWidth: 22.0in fileTypes.excel.pagination.dimensions.minHeight: 8.5in fileTypes.excel.pagination.dimensions.maxHeight: 17.0in |
The following configuration properties have been deprecated and will be removed in a future release. Alter these properties only if not using the central configuration file. |
To customize Excel pagination settings using legacy configuration, edit the Watchdog configuration file located in the following default directories:
Modify the following parameters to adjust pagination settings:
Example |
Copy Code
|
---|---|
"officeConversionService": { ... "excelPagination":true, "excelPageWidthMin":11.0, "excelPageWidthMax":22.0, "excelPageHeightMin":8.5, "excelPageHeightMax":17.0 ... }, |