Default PDF Options

FAQs

About the Plugin

Usage Instruction

Plugin Global Configurations

FAQs

About the Plugin

This plugin allows to set the default PDF configuration

Each time that the preview dialog is open, the default parameters will be applied (all or part of them)

Usage Instruction

Edit the config.js file in the plugins folder and set the relevant values.

All fields are optional, so a default value for some of them is not set, it will be ignore and the default Sisense settings will be used.

Plugin Global Configurations

window.PS_DEFAULT_PDF_OPTIONS_CONFIG = {

    /*
        Paper options: 
        A0, A1, A2, A3, A4, A5, LEGAL, LETTER, TABLOID
    */
    paperSize: 'A4',

    /*
        Orientation options: 
        portrait, landscape
    */
    orientation: 'portrait',

    /*
        Header options: 
        compact, medium, large, none
    */
    header: 'compact',

    header_Title: true,
    header_DataAsOf: true,
    header_DatasetName: true,
    header_DashboardFilters: true,
    footer_PageNumber: true
};

Last updated