PrizmDoc v13.3 - Updated
Customize Excel Pagination Settings for PrizmDoc-Server
Administrator Guide > System Configuration > Configure the PrizmDoc Server > Customize Excel Pagination Settings for PrizmDoc-Server

Customize 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.

Notes:

  1. The file paths for the Central Configuration file are:
    • Linux: /usr/share/prizm/prizm-services-config.yml
    • Windows: C:\Prizm\prizm-services-config.yml
  2. The default installation directory is: C:\Prizm.

Modify the following parameters to adjust pagination settings:

Example

fileTypes.excel.pagination.enabled: true
fileTypes.excel.pagination.dimensions.mode: override
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

Important: 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

"officeConversionService": {
    ...
    "excelPagination":true,
    "excelPageWidthMin":11.0,
    "excelPageWidthMax":22.0,
    "excelPageHeightMin":8.5,
    "excelPageHeightMax":17.0     
    ...
},