 |
 |
|
 |

Back to BI Tips & Tricks
CRN tuning option for using with a lighter font
Solution:
The default font for reports is set in the default stylesheet, GlobalReportStyles.css:
.pg /* page */,
.pp /* prompt page */
{
font-family: Tahoma, 'Arial Unicode MS', 'Andale WT', Arial, 'MS UI Gothic', Gulim, SimSun, PMingLiU, Raghu8, sans-serif;
}
There are two copies of this file, one version in the /webcontent/schemas directory used for HTML reports and the other in the /bin directory which is used when rendering charts, PDF reports and Excel reports. By default, the files are identical but it's possible to change each independently. Keep in mind that all changes will be overwritten when upgrades are applied, so it's important to overlay these changes each time after upgrading.
For example, to set the default PDF font for reports to a Unicode font like Arial Unicode MS, edit GlobalReportStyles.css in the /bin directory:
.pg /* page */,
.pp /* prompt page */
{
font-family: 'Arial Unicode MS', 'Andale WT', Arial, 'MS UI Gothic', Gulim, SimSun, PMingLiU, Raghu8, sans-serif;
}
Source: Moser Consulting, Inc.
|
|
 |
 |
|