SSRS BIDS Tooltip text formatting

11,112

You can't achieve what you want in SSRS out-of-the-box. The Tooltip is rendered in report as "Title" attribute for HTML element and it is not taking any formatting.

What you can do is writing some JavaScript code that will handle tooltip for you, hover attaching such a code is always "hacky". You can find sample solution of using JavaScript to control tooltip in SSRS here:

Share:
11,112
JsonStatham
Author by

JsonStatham

C#, Blazor,MVC, .NetCore 5/6 , AZURE, SQL Server Developer with 11 years experience

Updated on June 04, 2022

Comments

  • JsonStatham
    JsonStatham over 1 year
    ="Project: " + Fields!barname.Value + VbCrLf  + "Service: " + Fields!SERVICE.Value
    

    Is it possible to make the above text BOLD when I hover over to display the tooltip using the expression language in BIDS, have tried html tags which do not seem to work.