How to wrap header text in report viewer using CSS

Is there a way to wrap the header text in the report viewer?

Comments

  • Here is an example of code you can use to do this in the CSS file:

    .dp-report-grid-viewer__header-name {

     overflow-wrap: break-word !important;

     hyphen: manual !important;

     white-space: unset !important;

     text-overflow: unset !important;

     color: black; /* added this line */

    }

Sign In or Register to comment.