Reputation: 768
I have created one report using SSRS 2008 and deployed it to CRM 2011(On-premise). When I run this report from Visual Studio 2010, it works fine as per the font style used(Trebuchet MS). But when I run the same report from CRM, the font is getting changed to 'Times New Roman'. And I checked, 'Trebuchet MS' is installed in server. Or do I need to install this font in CRM? If so, how can I install that?
Below is the image which shows the same report running in (A) From Visual Studio and (B) From CRM 2011 but they are with different fonts. Can any one help me to get this report done with Trebuchet MS in CRM?
Upvotes: 1
Views: 791
Reputation: 23
If the export shows the correct font then the problem is that some CSS on the page is overwriting what you have set for the report. Right click on the font then can you screenshot it in the browser (preferably chrome). This may let you know where it is picking up that font-family.
To overlay it use this
#whateveryouridis{ font-family: Trebuchet MS !important }
Upvotes: 0
Reputation: 397
I think it might be a browser related issue. Have you tried to export to a PDF and see what the font is? It might help.
Upvotes: 0