boolean
Shows or hides the link of customBrandSettings.
Defaults to false
Example
<div id="reportviewer"></div>
<script>
    $("#reportviewer").boldReportViewer(
        {
            customBrandSettings:{ hidehelplink: false }
        });
</script> string
Gets or sets the domain of the customBrandSettings.
Defaults to empty
Example
<div id="reportviewer"></div>
<script>
    $("#reportviewer").boldReportViewer({
        customBrandSettings:{
                    customdomain: 'https://help.boldreports.com'
                }  
    });
</script> string
Gets or sets the name of the customBrandSettings.
Defaults to empty
Example
<div id="reportviewer"></div>
<script>
    $("#reportviewer").boldReportViewer({
        customBrandSettings:{
                    custombrandname: 'Bold Reports'
                }  
    });
</script> array
Add the links to the customBrandSettings.
Defaults to empty
Example
<div id="reportviewer"></div>
<script>
    $("#reportviewer").boldReportViewer(
        {
            customBrandSettings:{
                customlinks: [{
                            name: 'ESLicenseMessage',
                            url: '/licensing/license-token/',
                        }]
            }
        });
</script>