Hi Paul West,
Yes, you can format the toolbar using CSS. You can change the Default toolbar items icon by overriding the content attribute using SVG icons. The dependent class for the toolbar items can be used to change the custom icons. The following code snippet illustrates how to change the toolbar icons. This code snippet need to be placed in any of your ‘cshtml’ pages of your Bold Reports ASP.Net Core application
The below class refer to the print and the export icons respectively.
<style>
/*Changes the print icon*/
.e-reportviewer-print:before {
content: "\e609"; /*Change custom icons for the built in icons*/
}
/*Changes the export icon*/
.e-reportviewer-export:before {
content: "\e600";
}
</style> |
The below snap shows the difference between the default icons and the custom icon that were used.
Default Icon for Print and Export |
Custom icon for Print and Export |
|
|
Please let us know if you need any further assistance on this.
Regards,
Muthu Ramana S